blob: 9c466f8695e2b294e363d3112649d8ed1ef12ed3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roese10e8bf82014-11-07 12:37:49 +01002/*
3 * Copyright (C) 2012
4 * Altera Corporation <www.altera.com>
Stefan Roese10e8bf82014-11-07 12:37:49 +01005 */
6
Simon Goldschmidt64c7c8c2019-11-20 22:27:31 +01007#include <clk.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06008#include <log.h>
Stefan Roese10e8bf82014-11-07 12:37:49 +01009#include <dm.h>
10#include <fdtdec.h>
11#include <malloc.h>
Simon Goldschmidtac7e14a2019-03-01 20:12:35 +010012#include <reset.h>
Stefan Roese10e8bf82014-11-07 12:37:49 +010013#include <spi.h>
Vignesh Raghavendrad6407722020-01-27 10:36:39 +053014#include <spi-mem.h>
Simon Glass336d4612020-02-03 07:36:16 -070015#include <dm/device_compat.h>
Simon Glass61b29b82020-02-03 07:36:15 -070016#include <linux/err.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090017#include <linux/errno.h>
Igor Prusove515a2b2023-11-14 14:02:56 +030018#include <linux/io.h>
Vignesh Raghavendraffab2122020-01-27 10:36:40 +053019#include <linux/sizes.h>
Igor Prusov13248d62023-11-09 20:10:04 +030020#include <linux/time.h>
T Karthik Reddy248fe9f2022-05-12 04:05:34 -060021#include <zynqmp_firmware.h>
Stefan Roese10e8bf82014-11-07 12:37:49 +010022#include "cadence_qspi.h"
T Karthik Reddy248fe9f2022-05-12 04:05:34 -060023#include <dt-bindings/power/xlnx-versal-power.h>
Stefan Roese10e8bf82014-11-07 12:37:49 +010024
25#define CQSPI_STIG_READ 0
26#define CQSPI_STIG_WRITE 1
Vignesh Raghavendraffab2122020-01-27 10:36:40 +053027#define CQSPI_READ 2
28#define CQSPI_WRITE 3
Stefan Roese10e8bf82014-11-07 12:37:49 +010029
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -060030__weak int cadence_qspi_apb_dma_read(struct cadence_spi_priv *priv,
T Karthik Reddycf553bf2022-05-12 04:05:32 -060031 const struct spi_mem_op *op)
32{
33 return 0;
34}
35
T Karthik Reddybf8dae52022-05-12 04:05:33 -060036__weak int cadence_qspi_versal_flash_reset(struct udevice *dev)
37{
38 return 0;
39}
40
Udit Kumarc77efca2023-09-12 15:20:35 +053041__weak ofnode cadence_qspi_get_subnode(struct udevice *dev)
42{
43 return dev_read_first_subnode(dev);
44}
45
Stefan Roese10e8bf82014-11-07 12:37:49 +010046static int cadence_spi_write_speed(struct udevice *bus, uint hz)
47{
Stefan Roese10e8bf82014-11-07 12:37:49 +010048 struct cadence_spi_priv *priv = dev_get_priv(bus);
49
50 cadence_qspi_apb_config_baudrate_div(priv->regbase,
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -060051 priv->ref_clk_hz, hz);
Stefan Roese10e8bf82014-11-07 12:37:49 +010052
53 /* Reconfigure delay timing if speed is changed. */
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -060054 cadence_qspi_apb_delay(priv->regbase, priv->ref_clk_hz, hz,
55 priv->tshsl_ns, priv->tsd2d_ns,
56 priv->tchsh_ns, priv->tslch_ns);
Stefan Roese10e8bf82014-11-07 12:37:49 +010057
58 return 0;
59}
60
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -060061static int cadence_spi_read_id(struct cadence_spi_priv *priv, u8 len,
Pratyush Yadav38b08522021-06-26 00:47:09 +053062 u8 *idcode)
Vignesh Raghavendrad6407722020-01-27 10:36:39 +053063{
Ashok Reddy Somad0003b52022-08-24 05:38:46 -060064 int err;
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -060065
Vignesh Raghavendrad6407722020-01-27 10:36:39 +053066 struct spi_mem_op op = SPI_MEM_OP(SPI_MEM_OP_CMD(0x9F, 1),
67 SPI_MEM_OP_NO_ADDR,
68 SPI_MEM_OP_NO_DUMMY,
69 SPI_MEM_OP_DATA_IN(len, idcode, 1));
70
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -060071 err = cadence_qspi_apb_command_read_setup(priv, &op);
Ashok Reddy Somad0003b52022-08-24 05:38:46 -060072 if (!err)
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -060073 err = cadence_qspi_apb_command_read(priv, &op);
Ashok Reddy Somad0003b52022-08-24 05:38:46 -060074
75 return err;
Vignesh Raghavendrad6407722020-01-27 10:36:39 +053076}
77
Stefan Roese10e8bf82014-11-07 12:37:49 +010078/* Calibration sequence to determine the read data capture delay register */
Chin Liang See98fbd712015-10-17 08:31:55 -050079static int spi_calibration(struct udevice *bus, uint hz)
Stefan Roese10e8bf82014-11-07 12:37:49 +010080{
Stefan Roese10e8bf82014-11-07 12:37:49 +010081 struct cadence_spi_priv *priv = dev_get_priv(bus);
82 void *base = priv->regbase;
Stefan Roese10e8bf82014-11-07 12:37:49 +010083 unsigned int idcode = 0, temp = 0;
84 int err = 0, i, range_lo = -1, range_hi = -1;
85
86 /* start with slowest clock (1 MHz) */
87 cadence_spi_write_speed(bus, 1000000);
88
89 /* configure the read data capture delay register to 0 */
90 cadence_qspi_apb_readdata_capture(base, 1, 0);
91
92 /* Enable QSPI */
93 cadence_qspi_apb_controller_enable(base);
94
95 /* read the ID which will be our golden value */
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -060096 err = cadence_spi_read_id(priv, 3, (u8 *)&idcode);
Stefan Roese10e8bf82014-11-07 12:37:49 +010097 if (err) {
98 puts("SF: Calibration failed (read)\n");
99 return err;
100 }
101
102 /* use back the intended clock and find low range */
Chin Liang See98fbd712015-10-17 08:31:55 -0500103 cadence_spi_write_speed(bus, hz);
Stefan Roese10e8bf82014-11-07 12:37:49 +0100104 for (i = 0; i < CQSPI_READ_CAPTURE_MAX_DELAY; i++) {
105 /* Disable QSPI */
106 cadence_qspi_apb_controller_disable(base);
107
108 /* reconfigure the read data capture delay register */
109 cadence_qspi_apb_readdata_capture(base, 1, i);
110
111 /* Enable back QSPI */
112 cadence_qspi_apb_controller_enable(base);
113
114 /* issue a RDID to get the ID value */
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600115 err = cadence_spi_read_id(priv, 3, (u8 *)&temp);
Stefan Roese10e8bf82014-11-07 12:37:49 +0100116 if (err) {
117 puts("SF: Calibration failed (read)\n");
118 return err;
119 }
120
121 /* search for range lo */
122 if (range_lo == -1 && temp == idcode) {
123 range_lo = i;
124 continue;
125 }
126
127 /* search for range hi */
128 if (range_lo != -1 && temp != idcode) {
129 range_hi = i - 1;
130 break;
131 }
132 range_hi = i;
133 }
134
135 if (range_lo == -1) {
136 puts("SF: Calibration failed (low range)\n");
137 return err;
138 }
139
140 /* Disable QSPI for subsequent initialization */
141 cadence_qspi_apb_controller_disable(base);
142
143 /* configure the final value for read data capture delay register */
144 cadence_qspi_apb_readdata_capture(base, 1, (range_hi + range_lo) / 2);
145 debug("SF: Read data capture delay calibrated to %i (%i - %i)\n",
146 (range_hi + range_lo) / 2, range_lo, range_hi);
147
148 /* just to ensure we do once only when speed or chip select change */
Chin Liang See98fbd712015-10-17 08:31:55 -0500149 priv->qspi_calibrated_hz = hz;
Stefan Roese10e8bf82014-11-07 12:37:49 +0100150 priv->qspi_calibrated_cs = spi_chip_select(bus);
151
152 return 0;
153}
154
155static int cadence_spi_set_speed(struct udevice *bus, uint hz)
156{
Stefan Roese10e8bf82014-11-07 12:37:49 +0100157 struct cadence_spi_priv *priv = dev_get_priv(bus);
158 int err;
159
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600160 if (!hz || hz > priv->max_hz)
161 hz = priv->max_hz;
Stefan Roese10e8bf82014-11-07 12:37:49 +0100162 /* Disable QSPI */
163 cadence_qspi_apb_controller_disable(priv->regbase);
164
Chin Liang See98fbd712015-10-17 08:31:55 -0500165 /*
Pratyush Yadavbd8c8dc2021-06-26 00:47:07 +0530166 * If the device tree already provides a read delay value, use that
167 * instead of calibrating.
Chin Liang See98fbd712015-10-17 08:31:55 -0500168 */
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600169 if (priv->read_delay >= 0) {
Pratyush Yadavbd8c8dc2021-06-26 00:47:07 +0530170 cadence_spi_write_speed(bus, hz);
171 cadence_qspi_apb_readdata_capture(priv->regbase, 1,
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600172 priv->read_delay);
Pratyush Yadavbd8c8dc2021-06-26 00:47:07 +0530173 } else if (priv->previous_hz != hz ||
174 priv->qspi_calibrated_hz != hz ||
175 priv->qspi_calibrated_cs != spi_chip_select(bus)) {
176 /*
177 * Calibration required for different current SCLK speed,
178 * requested SCLK speed or chip select
179 */
Chin Liang See98fbd712015-10-17 08:31:55 -0500180 err = spi_calibration(bus, hz);
Stefan Roese10e8bf82014-11-07 12:37:49 +0100181 if (err)
182 return err;
Chin Liang See98fbd712015-10-17 08:31:55 -0500183
184 /* prevent calibration run when same as previous request */
185 priv->previous_hz = hz;
Stefan Roese10e8bf82014-11-07 12:37:49 +0100186 }
187
188 /* Enable QSPI */
189 cadence_qspi_apb_controller_enable(priv->regbase);
190
191 debug("%s: speed=%d\n", __func__, hz);
192
193 return 0;
194}
195
196static int cadence_spi_probe(struct udevice *bus)
197{
Simon Glass0fd3d912020-12-22 19:30:28 -0700198 struct cadence_spi_plat *plat = dev_get_plat(bus);
Stefan Roese10e8bf82014-11-07 12:37:49 +0100199 struct cadence_spi_priv *priv = dev_get_priv(bus);
Pratyush Yadav0a9c2872020-02-24 12:40:51 +0530200 struct clk clk;
Simon Goldschmidtac7e14a2019-03-01 20:12:35 +0100201 int ret;
Stefan Roese10e8bf82014-11-07 12:37:49 +0100202
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600203 priv->regbase = plat->regbase;
204 priv->ahbbase = plat->ahbbase;
205 priv->is_dma = plat->is_dma;
206 priv->is_decoded_cs = plat->is_decoded_cs;
207 priv->fifo_depth = plat->fifo_depth;
208 priv->fifo_width = plat->fifo_width;
209 priv->trigger_address = plat->trigger_address;
210 priv->read_delay = plat->read_delay;
211 priv->ahbsize = plat->ahbsize;
212 priv->max_hz = plat->max_hz;
213
214 priv->page_size = plat->page_size;
215 priv->block_size = plat->block_size;
216 priv->tshsl_ns = plat->tshsl_ns;
217 priv->tsd2d_ns = plat->tsd2d_ns;
218 priv->tchsh_ns = plat->tchsh_ns;
219 priv->tslch_ns = plat->tslch_ns;
Stefan Roese10e8bf82014-11-07 12:37:49 +0100220
Simon Glass8581d992023-02-05 15:44:33 -0700221 if (IS_ENABLED(CONFIG_ZYNQMP_FIRMWARE))
T Karthik Reddy248fe9f2022-05-12 04:05:34 -0600222 xilinx_pm_request(PM_REQUEST_NODE, PM_DEV_OSPI,
223 ZYNQMP_PM_CAPABILITY_ACCESS, ZYNQMP_PM_MAX_QOS,
224 ZYNQMP_PM_REQUEST_ACK_NO, NULL);
225
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600226 if (priv->ref_clk_hz == 0) {
Pratyush Yadav0a9c2872020-02-24 12:40:51 +0530227 ret = clk_get_by_index(bus, 0, &clk);
228 if (ret) {
Tom Rini55b3ba42022-03-30 18:07:23 -0400229#ifdef CONFIG_HAS_CQSPI_REF_CLK
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600230 priv->ref_clk_hz = CONFIG_CQSPI_REF_CLK;
Tom Rini55b3ba42022-03-30 18:07:23 -0400231#elif defined(CONFIG_ARCH_SOCFPGA)
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600232 priv->ref_clk_hz = cm_get_qspi_controller_clk_hz();
Pratyush Yadav0a9c2872020-02-24 12:40:51 +0530233#else
234 return ret;
235#endif
236 } else {
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600237 priv->ref_clk_hz = clk_get_rate(&clk);
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600238 if (IS_ERR_VALUE(priv->ref_clk_hz))
239 return priv->ref_clk_hz;
Pratyush Yadav0a9c2872020-02-24 12:40:51 +0530240 }
241 }
242
Christian Gmeinere1456062022-02-22 17:23:25 +0100243 priv->resets = devm_reset_bulk_get_optional(bus);
244 if (priv->resets)
245 reset_deassert_bulk(priv->resets);
Simon Goldschmidtac7e14a2019-03-01 20:12:35 +0100246
Stefan Roese10e8bf82014-11-07 12:37:49 +0100247 if (!priv->qspi_is_init) {
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600248 cadence_qspi_apb_controller_init(priv);
Stefan Roese10e8bf82014-11-07 12:37:49 +0100249 priv->qspi_is_init = 1;
250 }
251
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600252 priv->wr_delay = 50 * DIV_ROUND_UP(NSEC_PER_SEC, priv->ref_clk_hz);
Pratyush Yadava6903aa2021-06-26 00:47:08 +0530253
Ashok Reddy Soma34dec6a2023-06-14 06:04:52 -0600254 /* Versal and Versal-NET use spi calibration to set read delay */
255 if (CONFIG_IS_ENABLED(ARCH_VERSAL) ||
Michal Simek9bf522c2024-05-29 16:48:01 +0200256 CONFIG_IS_ENABLED(ARCH_VERSAL_NET) ||
257 CONFIG_IS_ENABLED(ARCH_VERSAL2))
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600258 if (priv->read_delay >= 0)
259 priv->read_delay = -1;
T Karthik Reddybf8dae52022-05-12 04:05:33 -0600260
Ashok Reddy Soma34dec6a2023-06-14 06:04:52 -0600261 /* Reset ospi flash device */
262 return cadence_qspi_versal_flash_reset(bus);
Stefan Roese10e8bf82014-11-07 12:37:49 +0100263}
264
Simon Goldschmidtac7e14a2019-03-01 20:12:35 +0100265static int cadence_spi_remove(struct udevice *dev)
266{
267 struct cadence_spi_priv *priv = dev_get_priv(dev);
Christian Gmeinere1456062022-02-22 17:23:25 +0100268 int ret = 0;
Simon Goldschmidtac7e14a2019-03-01 20:12:35 +0100269
Christian Gmeinere1456062022-02-22 17:23:25 +0100270 if (priv->resets)
271 ret = reset_release_bulk(priv->resets);
272
273 return ret;
Simon Goldschmidtac7e14a2019-03-01 20:12:35 +0100274}
275
Stefan Roese10e8bf82014-11-07 12:37:49 +0100276static int cadence_spi_set_mode(struct udevice *bus, uint mode)
277{
278 struct cadence_spi_priv *priv = dev_get_priv(bus);
Stefan Roese10e8bf82014-11-07 12:37:49 +0100279
280 /* Disable QSPI */
281 cadence_qspi_apb_controller_disable(priv->regbase);
282
283 /* Set SPI mode */
Phil Edworthy7d403f22016-11-29 12:58:31 +0000284 cadence_qspi_apb_set_clk_mode(priv->regbase, mode);
Stefan Roese10e8bf82014-11-07 12:37:49 +0100285
Vignesh Raghavendraffab2122020-01-27 10:36:40 +0530286 /* Enable Direct Access Controller */
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600287 if (priv->use_dac_mode)
Vignesh Raghavendraffab2122020-01-27 10:36:40 +0530288 cadence_qspi_apb_dac_mode_enable(priv->regbase);
289
Stefan Roese10e8bf82014-11-07 12:37:49 +0100290 /* Enable QSPI */
291 cadence_qspi_apb_controller_enable(priv->regbase);
292
293 return 0;
294}
295
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530296static int cadence_spi_mem_exec_op(struct spi_slave *spi,
297 const struct spi_mem_op *op)
Stefan Roese10e8bf82014-11-07 12:37:49 +0100298{
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530299 struct udevice *bus = spi->dev->parent;
Stefan Roese10e8bf82014-11-07 12:37:49 +0100300 struct cadence_spi_priv *priv = dev_get_priv(bus);
301 void *base = priv->regbase;
Stefan Roese10e8bf82014-11-07 12:37:49 +0100302 int err = 0;
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530303 u32 mode;
Stefan Roese10e8bf82014-11-07 12:37:49 +0100304
305 /* Set Chip select */
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530306 cadence_qspi_apb_chipselect(base, spi_chip_select(spi->dev),
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600307 priv->is_decoded_cs);
Stefan Roese10e8bf82014-11-07 12:37:49 +0100308
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530309 if (op->data.dir == SPI_MEM_DATA_IN && op->data.buf.in) {
Dhruva Gole53f4ef02023-01-03 12:01:12 +0530310 /*
311 * Performing reads in DAC mode forces to read minimum 4 bytes
312 * which is unsupported on some flash devices during register
313 * reads, prefer STIG mode for such small reads.
314 */
Apurva Nandan8077d2962023-04-12 16:28:55 +0530315 if (op->data.nbytes <= CQSPI_STIG_DATA_LEN_MAX)
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530316 mode = CQSPI_STIG_READ;
317 else
Vignesh Raghavendraffab2122020-01-27 10:36:40 +0530318 mode = CQSPI_READ;
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530319 } else {
Apurva Nandan8077d2962023-04-12 16:28:55 +0530320 if (op->data.nbytes <= CQSPI_STIG_DATA_LEN_MAX)
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530321 mode = CQSPI_STIG_WRITE;
322 else
Vignesh Raghavendraffab2122020-01-27 10:36:40 +0530323 mode = CQSPI_WRITE;
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530324 }
Stefan Roese10e8bf82014-11-07 12:37:49 +0100325
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530326 switch (mode) {
327 case CQSPI_STIG_READ:
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600328 err = cadence_qspi_apb_command_read_setup(priv, op);
Pratyush Yadav38b08522021-06-26 00:47:09 +0530329 if (!err)
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600330 err = cadence_qspi_apb_command_read(priv, op);
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530331 break;
332 case CQSPI_STIG_WRITE:
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600333 err = cadence_qspi_apb_command_write_setup(priv, op);
Pratyush Yadav38b08522021-06-26 00:47:09 +0530334 if (!err)
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600335 err = cadence_qspi_apb_command_write(priv, op);
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530336 break;
Vignesh Raghavendraffab2122020-01-27 10:36:40 +0530337 case CQSPI_READ:
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600338 err = cadence_qspi_apb_read_setup(priv, op);
T Karthik Reddycf553bf2022-05-12 04:05:32 -0600339 if (!err) {
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600340 if (priv->is_dma)
341 err = cadence_qspi_apb_dma_read(priv, op);
T Karthik Reddycf553bf2022-05-12 04:05:32 -0600342 else
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600343 err = cadence_qspi_apb_read_execute(priv, op);
T Karthik Reddycf553bf2022-05-12 04:05:32 -0600344 }
Stefan Roese10e8bf82014-11-07 12:37:49 +0100345 break;
Vignesh Raghavendraffab2122020-01-27 10:36:40 +0530346 case CQSPI_WRITE:
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600347 err = cadence_qspi_apb_write_setup(priv, op);
Vignesh Raghavendraffab2122020-01-27 10:36:40 +0530348 if (!err)
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600349 err = cadence_qspi_apb_write_execute(priv, op);
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530350 break;
351 default:
352 err = -1;
353 break;
Stefan Roese10e8bf82014-11-07 12:37:49 +0100354 }
355
356 return err;
357}
358
Pratyush Yadav38b08522021-06-26 00:47:09 +0530359static bool cadence_spi_mem_supports_op(struct spi_slave *slave,
360 const struct spi_mem_op *op)
361{
362 bool all_true, all_false;
363
Apurva Nandan44e2de02023-04-12 16:28:54 +0530364 /*
365 * op->dummy.dtr is required for converting nbytes into ncycles.
366 * Also, don't check the dtr field of the op phase having zero nbytes.
367 */
368 all_true = op->cmd.dtr &&
369 (!op->addr.nbytes || op->addr.dtr) &&
370 (!op->dummy.nbytes || op->dummy.dtr) &&
371 (!op->data.nbytes || op->data.dtr);
372
Pratyush Yadav38b08522021-06-26 00:47:09 +0530373 all_false = !op->cmd.dtr && !op->addr.dtr && !op->dummy.dtr &&
374 !op->data.dtr;
375
376 /* Mixed DTR modes not supported. */
377 if (!(all_true || all_false))
378 return false;
379
380 if (all_true)
381 return spi_mem_dtr_supports_op(slave, op);
382 else
383 return spi_mem_default_supports_op(slave, op);
384}
385
Simon Glassd1998a92020-12-03 16:55:21 -0700386static int cadence_spi_of_to_plat(struct udevice *bus)
Stefan Roese10e8bf82014-11-07 12:37:49 +0100387{
Simon Glass0fd3d912020-12-22 19:30:28 -0700388 struct cadence_spi_plat *plat = dev_get_plat(bus);
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600389 struct cadence_spi_priv *priv = dev_get_priv(bus);
Simon Goldschmidt46b633d2019-05-09 22:11:56 +0200390 ofnode subnode;
Stefan Roese10e8bf82014-11-07 12:37:49 +0100391
Johan Jonker320a1932023-03-13 01:32:31 +0100392 plat->regbase = devfdt_get_addr_index_ptr(bus, 0);
Johan Jonker842fb5d2023-03-13 01:32:18 +0100393 plat->ahbbase = devfdt_get_addr_size_index_ptr(bus, 1, &plat->ahbsize);
Simon Goldschmidt46b633d2019-05-09 22:11:56 +0200394 plat->is_decoded_cs = dev_read_bool(bus, "cdns,is-decoded-cs");
395 plat->fifo_depth = dev_read_u32_default(bus, "cdns,fifo-depth", 128);
396 plat->fifo_width = dev_read_u32_default(bus, "cdns,fifo-width", 4);
397 plat->trigger_address = dev_read_u32_default(bus,
398 "cdns,trigger-address",
399 0);
Vignesh Raghavendraffab2122020-01-27 10:36:40 +0530400 /* Use DAC mode only when MMIO window is at least 8M wide */
401 if (plat->ahbsize >= SZ_8M)
Ashok Reddy Somaf7d4cab2022-08-24 05:38:47 -0600402 priv->use_dac_mode = true;
Stefan Roese10e8bf82014-11-07 12:37:49 +0100403
T Karthik Reddycf553bf2022-05-12 04:05:32 -0600404 plat->is_dma = dev_read_bool(bus, "cdns,is-dma");
405
Pengfei Fand466f622022-12-09 09:39:50 +0800406 /* All other parameters are embedded in the child node */
Udit Kumarc77efca2023-09-12 15:20:35 +0530407 subnode = cadence_qspi_get_subnode(bus);
Simon Goldschmidt46b633d2019-05-09 22:11:56 +0200408 if (!ofnode_valid(subnode)) {
Stefan Roese10e8bf82014-11-07 12:37:49 +0100409 printf("Error: subnode with SPI flash config missing!\n");
410 return -ENODEV;
411 }
412
Chin Liang See040f4ba2015-10-17 08:32:14 -0500413 /* Use 500 KHz as a suitable default */
Simon Goldschmidt46b633d2019-05-09 22:11:56 +0200414 plat->max_hz = ofnode_read_u32_default(subnode, "spi-max-frequency",
415 500000);
Chin Liang See040f4ba2015-10-17 08:32:14 -0500416
Stefan Roese10e8bf82014-11-07 12:37:49 +0100417 /* Read other parameters from DT */
Simon Goldschmidt46b633d2019-05-09 22:11:56 +0200418 plat->page_size = ofnode_read_u32_default(subnode, "page-size", 256);
419 plat->block_size = ofnode_read_u32_default(subnode, "block-size", 16);
420 plat->tshsl_ns = ofnode_read_u32_default(subnode, "cdns,tshsl-ns",
421 200);
422 plat->tsd2d_ns = ofnode_read_u32_default(subnode, "cdns,tsd2d-ns",
423 255);
424 plat->tchsh_ns = ofnode_read_u32_default(subnode, "cdns,tchsh-ns", 20);
425 plat->tslch_ns = ofnode_read_u32_default(subnode, "cdns,tslch-ns", 20);
Pratyush Yadavbd8c8dc2021-06-26 00:47:07 +0530426 /*
427 * Read delay should be an unsigned value but we use a signed integer
428 * so that negative values can indicate that the device tree did not
429 * specify any signed values and we need to perform the calibration
430 * sequence to find it out.
431 */
432 plat->read_delay = ofnode_read_s32_default(subnode, "cdns,read-delay",
433 -1);
Stefan Roese10e8bf82014-11-07 12:37:49 +0100434
435 debug("%s: regbase=%p ahbbase=%p max-frequency=%d page-size=%d\n",
436 __func__, plat->regbase, plat->ahbbase, plat->max_hz,
437 plat->page_size);
438
439 return 0;
440}
441
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530442static const struct spi_controller_mem_ops cadence_spi_mem_ops = {
443 .exec_op = cadence_spi_mem_exec_op,
Pratyush Yadav38b08522021-06-26 00:47:09 +0530444 .supports_op = cadence_spi_mem_supports_op,
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530445};
446
Stefan Roese10e8bf82014-11-07 12:37:49 +0100447static const struct dm_spi_ops cadence_spi_ops = {
Stefan Roese10e8bf82014-11-07 12:37:49 +0100448 .set_speed = cadence_spi_set_speed,
449 .set_mode = cadence_spi_set_mode,
Vignesh Raghavendrad6407722020-01-27 10:36:39 +0530450 .mem_ops = &cadence_spi_mem_ops,
Stefan Roese10e8bf82014-11-07 12:37:49 +0100451 /*
452 * cs_info is not needed, since we require all chip selects to be
453 * in the device tree explicitly
454 */
455};
456
457static const struct udevice_id cadence_spi_ids[] = {
Simon Goldschmidt2a3a9992018-11-02 11:54:51 +0100458 { .compatible = "cdns,qspi-nor" },
Vignesh Raghavendradaa94052019-12-05 15:46:07 +0530459 { .compatible = "ti,am654-ospi" },
Stefan Roese10e8bf82014-11-07 12:37:49 +0100460 { }
461};
462
463U_BOOT_DRIVER(cadence_spi) = {
464 .name = "cadence_spi",
465 .id = UCLASS_SPI,
466 .of_match = cadence_spi_ids,
467 .ops = &cadence_spi_ops,
Simon Glassd1998a92020-12-03 16:55:21 -0700468 .of_to_plat = cadence_spi_of_to_plat,
Simon Glass8a8d24b2020-12-03 16:55:23 -0700469 .plat_auto = sizeof(struct cadence_spi_plat),
Simon Glass41575d82020-12-03 16:55:17 -0700470 .priv_auto = sizeof(struct cadence_spi_priv),
Stefan Roese10e8bf82014-11-07 12:37:49 +0100471 .probe = cadence_spi_probe,
Simon Goldschmidtac7e14a2019-03-01 20:12:35 +0100472 .remove = cadence_spi_remove,
473 .flags = DM_FLAG_OS_PREPARE,
Stefan Roese10e8bf82014-11-07 12:37:49 +0100474};