Merge https://gitlab.denx.de/u-boot/custodians/u-boot-spi
[platform/kernel/u-boot.git] / drivers / spi / cadence_qspi.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2012
4  * Altera Corporation <www.altera.com>
5  */
6
7 #include <common.h>
8 #include <clk.h>
9 #include <asm-generic/io.h>
10 #include <dm.h>
11 #include <fdtdec.h>
12 #include <malloc.h>
13 #include <reset.h>
14 #include <spi.h>
15 #include <spi-mem.h>
16 #include <dm/device_compat.h>
17 #include <linux/err.h>
18 #include <linux/errno.h>
19 #include <linux/sizes.h>
20 #include "cadence_qspi.h"
21
22 #define CQSPI_STIG_READ                 0
23 #define CQSPI_STIG_WRITE                1
24 #define CQSPI_READ                      2
25 #define CQSPI_WRITE                     3
26
27 static int cadence_spi_write_speed(struct udevice *bus, uint hz)
28 {
29         struct cadence_spi_platdata *plat = bus->platdata;
30         struct cadence_spi_priv *priv = dev_get_priv(bus);
31
32         cadence_qspi_apb_config_baudrate_div(priv->regbase,
33                                              plat->ref_clk_hz, hz);
34
35         /* Reconfigure delay timing if speed is changed. */
36         cadence_qspi_apb_delay(priv->regbase, plat->ref_clk_hz, hz,
37                                plat->tshsl_ns, plat->tsd2d_ns,
38                                plat->tchsh_ns, plat->tslch_ns);
39
40         return 0;
41 }
42
43 static int cadence_spi_read_id(void *reg_base, u8 len, u8 *idcode)
44 {
45         struct spi_mem_op op = SPI_MEM_OP(SPI_MEM_OP_CMD(0x9F, 1),
46                                           SPI_MEM_OP_NO_ADDR,
47                                           SPI_MEM_OP_NO_DUMMY,
48                                           SPI_MEM_OP_DATA_IN(len, idcode, 1));
49
50         return cadence_qspi_apb_command_read(reg_base, &op);
51 }
52
53 /* Calibration sequence to determine the read data capture delay register */
54 static int spi_calibration(struct udevice *bus, uint hz)
55 {
56         struct cadence_spi_priv *priv = dev_get_priv(bus);
57         void *base = priv->regbase;
58         unsigned int idcode = 0, temp = 0;
59         int err = 0, i, range_lo = -1, range_hi = -1;
60
61         /* start with slowest clock (1 MHz) */
62         cadence_spi_write_speed(bus, 1000000);
63
64         /* configure the read data capture delay register to 0 */
65         cadence_qspi_apb_readdata_capture(base, 1, 0);
66
67         /* Enable QSPI */
68         cadence_qspi_apb_controller_enable(base);
69
70         /* read the ID which will be our golden value */
71         err = cadence_spi_read_id(base, 3, (u8 *)&idcode);
72         if (err) {
73                 puts("SF: Calibration failed (read)\n");
74                 return err;
75         }
76
77         /* use back the intended clock and find low range */
78         cadence_spi_write_speed(bus, hz);
79         for (i = 0; i < CQSPI_READ_CAPTURE_MAX_DELAY; i++) {
80                 /* Disable QSPI */
81                 cadence_qspi_apb_controller_disable(base);
82
83                 /* reconfigure the read data capture delay register */
84                 cadence_qspi_apb_readdata_capture(base, 1, i);
85
86                 /* Enable back QSPI */
87                 cadence_qspi_apb_controller_enable(base);
88
89                 /* issue a RDID to get the ID value */
90                 err = cadence_spi_read_id(base, 3, (u8 *)&temp);
91                 if (err) {
92                         puts("SF: Calibration failed (read)\n");
93                         return err;
94                 }
95
96                 /* search for range lo */
97                 if (range_lo == -1 && temp == idcode) {
98                         range_lo = i;
99                         continue;
100                 }
101
102                 /* search for range hi */
103                 if (range_lo != -1 && temp != idcode) {
104                         range_hi = i - 1;
105                         break;
106                 }
107                 range_hi = i;
108         }
109
110         if (range_lo == -1) {
111                 puts("SF: Calibration failed (low range)\n");
112                 return err;
113         }
114
115         /* Disable QSPI for subsequent initialization */
116         cadence_qspi_apb_controller_disable(base);
117
118         /* configure the final value for read data capture delay register */
119         cadence_qspi_apb_readdata_capture(base, 1, (range_hi + range_lo) / 2);
120         debug("SF: Read data capture delay calibrated to %i (%i - %i)\n",
121               (range_hi + range_lo) / 2, range_lo, range_hi);
122
123         /* just to ensure we do once only when speed or chip select change */
124         priv->qspi_calibrated_hz = hz;
125         priv->qspi_calibrated_cs = spi_chip_select(bus);
126
127         return 0;
128 }
129
130 static int cadence_spi_set_speed(struct udevice *bus, uint hz)
131 {
132         struct cadence_spi_platdata *plat = bus->platdata;
133         struct cadence_spi_priv *priv = dev_get_priv(bus);
134         int err;
135
136         if (hz > plat->max_hz)
137                 hz = plat->max_hz;
138
139         /* Disable QSPI */
140         cadence_qspi_apb_controller_disable(priv->regbase);
141
142         /*
143          * Calibration required for different current SCLK speed, requested
144          * SCLK speed or chip select
145          */
146         if (priv->previous_hz != hz ||
147             priv->qspi_calibrated_hz != hz ||
148             priv->qspi_calibrated_cs != spi_chip_select(bus)) {
149                 err = spi_calibration(bus, hz);
150                 if (err)
151                         return err;
152
153                 /* prevent calibration run when same as previous request */
154                 priv->previous_hz = hz;
155         }
156
157         /* Enable QSPI */
158         cadence_qspi_apb_controller_enable(priv->regbase);
159
160         debug("%s: speed=%d\n", __func__, hz);
161
162         return 0;
163 }
164
165 static int cadence_spi_probe(struct udevice *bus)
166 {
167         struct cadence_spi_platdata *plat = bus->platdata;
168         struct cadence_spi_priv *priv = dev_get_priv(bus);
169         struct clk clk;
170         int ret;
171
172         priv->regbase = plat->regbase;
173         priv->ahbbase = plat->ahbbase;
174
175         if (plat->ref_clk_hz == 0) {
176                 ret = clk_get_by_index(bus, 0, &clk);
177                 if (ret) {
178 #ifdef CONFIG_CQSPI_REF_CLK
179                         plat->ref_clk_hz = CONFIG_CQSPI_REF_CLK;
180 #else
181                         return ret;
182 #endif
183                 } else {
184                         plat->ref_clk_hz = clk_get_rate(&clk);
185                         clk_free(&clk);
186                         if (IS_ERR_VALUE(plat->ref_clk_hz))
187                                 return plat->ref_clk_hz;
188                 }
189         }
190
191         ret = reset_get_bulk(bus, &priv->resets);
192         if (ret)
193                 dev_warn(bus, "Can't get reset: %d\n", ret);
194         else
195                 reset_deassert_bulk(&priv->resets);
196
197         if (!priv->qspi_is_init) {
198                 cadence_qspi_apb_controller_init(plat);
199                 priv->qspi_is_init = 1;
200         }
201
202         return 0;
203 }
204
205 static int cadence_spi_remove(struct udevice *dev)
206 {
207         struct cadence_spi_priv *priv = dev_get_priv(dev);
208
209         return reset_release_bulk(&priv->resets);
210 }
211
212 static int cadence_spi_set_mode(struct udevice *bus, uint mode)
213 {
214         struct cadence_spi_platdata *plat = bus->platdata;
215         struct cadence_spi_priv *priv = dev_get_priv(bus);
216
217         /* Disable QSPI */
218         cadence_qspi_apb_controller_disable(priv->regbase);
219
220         /* Set SPI mode */
221         cadence_qspi_apb_set_clk_mode(priv->regbase, mode);
222
223         /* Enable Direct Access Controller */
224         if (plat->use_dac_mode)
225                 cadence_qspi_apb_dac_mode_enable(priv->regbase);
226
227         /* Enable QSPI */
228         cadence_qspi_apb_controller_enable(priv->regbase);
229
230         return 0;
231 }
232
233 static int cadence_spi_mem_exec_op(struct spi_slave *spi,
234                                    const struct spi_mem_op *op)
235 {
236         struct udevice *bus = spi->dev->parent;
237         struct cadence_spi_platdata *plat = bus->platdata;
238         struct cadence_spi_priv *priv = dev_get_priv(bus);
239         void *base = priv->regbase;
240         int err = 0;
241         u32 mode;
242
243         /* Set Chip select */
244         cadence_qspi_apb_chipselect(base, spi_chip_select(spi->dev),
245                                     plat->is_decoded_cs);
246
247         if (op->data.dir == SPI_MEM_DATA_IN && op->data.buf.in) {
248                 if (!op->addr.nbytes)
249                         mode = CQSPI_STIG_READ;
250                 else
251                         mode = CQSPI_READ;
252         } else {
253                 if (!op->addr.nbytes || !op->data.buf.out)
254                         mode = CQSPI_STIG_WRITE;
255                 else
256                         mode = CQSPI_WRITE;
257         }
258
259         switch (mode) {
260         case CQSPI_STIG_READ:
261                 err = cadence_qspi_apb_command_read(base, op);
262                 break;
263         case CQSPI_STIG_WRITE:
264                 err = cadence_qspi_apb_command_write(base, op);
265                 break;
266         case CQSPI_READ:
267                 err = cadence_qspi_apb_read_setup(plat, op);
268                 if (!err)
269                         err = cadence_qspi_apb_read_execute(plat, op);
270                 break;
271         case CQSPI_WRITE:
272                 err = cadence_qspi_apb_write_setup(plat, op);
273                 if (!err)
274                         err = cadence_qspi_apb_write_execute(plat, op);
275                 break;
276         default:
277                 err = -1;
278                 break;
279         }
280
281         return err;
282 }
283
284 static int cadence_spi_ofdata_to_platdata(struct udevice *bus)
285 {
286         struct cadence_spi_platdata *plat = bus->platdata;
287         ofnode subnode;
288
289         plat->regbase = (void *)devfdt_get_addr_index(bus, 0);
290         plat->ahbbase = (void *)devfdt_get_addr_size_index(bus, 1,
291                         &plat->ahbsize);
292         plat->is_decoded_cs = dev_read_bool(bus, "cdns,is-decoded-cs");
293         plat->fifo_depth = dev_read_u32_default(bus, "cdns,fifo-depth", 128);
294         plat->fifo_width = dev_read_u32_default(bus, "cdns,fifo-width", 4);
295         plat->trigger_address = dev_read_u32_default(bus,
296                                                      "cdns,trigger-address",
297                                                      0);
298         /* Use DAC mode only when MMIO window is at least 8M wide */
299         if (plat->ahbsize >= SZ_8M)
300                 plat->use_dac_mode = true;
301
302         /* All other paramters are embedded in the child node */
303         subnode = dev_read_first_subnode(bus);
304         if (!ofnode_valid(subnode)) {
305                 printf("Error: subnode with SPI flash config missing!\n");
306                 return -ENODEV;
307         }
308
309         /* Use 500 KHz as a suitable default */
310         plat->max_hz = ofnode_read_u32_default(subnode, "spi-max-frequency",
311                                                500000);
312
313         /* Read other parameters from DT */
314         plat->page_size = ofnode_read_u32_default(subnode, "page-size", 256);
315         plat->block_size = ofnode_read_u32_default(subnode, "block-size", 16);
316         plat->tshsl_ns = ofnode_read_u32_default(subnode, "cdns,tshsl-ns",
317                                                  200);
318         plat->tsd2d_ns = ofnode_read_u32_default(subnode, "cdns,tsd2d-ns",
319                                                  255);
320         plat->tchsh_ns = ofnode_read_u32_default(subnode, "cdns,tchsh-ns", 20);
321         plat->tslch_ns = ofnode_read_u32_default(subnode, "cdns,tslch-ns", 20);
322
323         debug("%s: regbase=%p ahbbase=%p max-frequency=%d page-size=%d\n",
324               __func__, plat->regbase, plat->ahbbase, plat->max_hz,
325               plat->page_size);
326
327         return 0;
328 }
329
330 static const struct spi_controller_mem_ops cadence_spi_mem_ops = {
331         .exec_op = cadence_spi_mem_exec_op,
332 };
333
334 static const struct dm_spi_ops cadence_spi_ops = {
335         .set_speed      = cadence_spi_set_speed,
336         .set_mode       = cadence_spi_set_mode,
337         .mem_ops        = &cadence_spi_mem_ops,
338         /*
339          * cs_info is not needed, since we require all chip selects to be
340          * in the device tree explicitly
341          */
342 };
343
344 static const struct udevice_id cadence_spi_ids[] = {
345         { .compatible = "cdns,qspi-nor" },
346         { .compatible = "ti,am654-ospi" },
347         { }
348 };
349
350 U_BOOT_DRIVER(cadence_spi) = {
351         .name = "cadence_spi",
352         .id = UCLASS_SPI,
353         .of_match = cadence_spi_ids,
354         .ops = &cadence_spi_ops,
355         .ofdata_to_platdata = cadence_spi_ofdata_to_platdata,
356         .platdata_auto_alloc_size = sizeof(struct cadence_spi_platdata),
357         .priv_auto_alloc_size = sizeof(struct cadence_spi_priv),
358         .probe = cadence_spi_probe,
359         .remove = cadence_spi_remove,
360         .flags = DM_FLAG_OS_PREPARE,
361 };