blob: d66201ec923df906d39a8636bace08e1897370e0 [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
7#ifndef __CADENCE_QSPI_H__
8#define __CADENCE_QSPI_H__
9
Simon Goldschmidtac7e14a2019-03-01 20:12:35 +010010#include <reset.h>
11
Stefan Roese10e8bf82014-11-07 12:37:49 +010012#define CQSPI_IS_ADDR(cmd_len) (cmd_len > 1 ? 1 : 0)
13
14#define CQSPI_NO_DECODER_MAX_CS 4
15#define CQSPI_DECODER_MAX_CS 16
16#define CQSPI_READ_CAPTURE_MAX_DELAY 16
17
18struct cadence_spi_platdata {
Simon Goldschmidt64c7c8c2019-11-20 22:27:31 +010019 unsigned int ref_clk_hz;
Stefan Roese10e8bf82014-11-07 12:37:49 +010020 unsigned int max_hz;
21 void *regbase;
22 void *ahbbase;
Jason Rush15a70a52018-01-23 17:13:09 -060023 bool is_decoded_cs;
24 u32 fifo_depth;
25 u32 fifo_width;
26 u32 trigger_address;
Stefan Roese10e8bf82014-11-07 12:37:49 +010027
Jason Rush15a70a52018-01-23 17:13:09 -060028 /* Flash parameters */
Stefan Roese10e8bf82014-11-07 12:37:49 +010029 u32 page_size;
30 u32 block_size;
31 u32 tshsl_ns;
32 u32 tsd2d_ns;
33 u32 tchsh_ns;
34 u32 tslch_ns;
Stefan Roese10e8bf82014-11-07 12:37:49 +010035};
36
37struct cadence_spi_priv {
38 void *regbase;
39 void *ahbbase;
40 size_t cmd_len;
41 u8 cmd_buf[32];
42 size_t data_len;
43
44 int qspi_is_init;
45 unsigned int qspi_calibrated_hz;
46 unsigned int qspi_calibrated_cs;
Chin Liang See98fbd712015-10-17 08:31:55 -050047 unsigned int previous_hz;
Simon Goldschmidtac7e14a2019-03-01 20:12:35 +010048
49 struct reset_ctl_bulk resets;
Stefan Roese10e8bf82014-11-07 12:37:49 +010050};
51
52/* Functions call declaration */
53void cadence_qspi_apb_controller_init(struct cadence_spi_platdata *plat);
54void cadence_qspi_apb_controller_enable(void *reg_base_addr);
55void cadence_qspi_apb_controller_disable(void *reg_base_addr);
56
57int cadence_qspi_apb_command_read(void *reg_base_addr,
Vignesh Raghavendrad6407722020-01-27 10:36:39 +053058 const struct spi_mem_op *op);
Stefan Roese10e8bf82014-11-07 12:37:49 +010059int cadence_qspi_apb_command_write(void *reg_base_addr,
Vignesh Raghavendrad6407722020-01-27 10:36:39 +053060 const struct spi_mem_op *op);
Stefan Roese10e8bf82014-11-07 12:37:49 +010061
62int cadence_qspi_apb_indirect_read_setup(struct cadence_spi_platdata *plat,
Vignesh Raghavendrad6407722020-01-27 10:36:39 +053063 const struct spi_mem_op *op);
Stefan Roese10e8bf82014-11-07 12:37:49 +010064int cadence_qspi_apb_indirect_read_execute(struct cadence_spi_platdata *plat,
65 unsigned int rxlen, u8 *rxbuf);
66int cadence_qspi_apb_indirect_write_setup(struct cadence_spi_platdata *plat,
Vignesh Raghavendrad6407722020-01-27 10:36:39 +053067 const struct spi_mem_op *op);
Stefan Roese10e8bf82014-11-07 12:37:49 +010068int cadence_qspi_apb_indirect_write_execute(struct cadence_spi_platdata *plat,
69 unsigned int txlen, const u8 *txbuf);
70
71void cadence_qspi_apb_chipselect(void *reg_base,
72 unsigned int chip_select, unsigned int decoder_enable);
Phil Edworthy7d403f22016-11-29 12:58:31 +000073void cadence_qspi_apb_set_clk_mode(void *reg_base, uint mode);
Stefan Roese10e8bf82014-11-07 12:37:49 +010074void cadence_qspi_apb_config_baudrate_div(void *reg_base,
75 unsigned int ref_clk_hz, unsigned int sclk_hz);
76void cadence_qspi_apb_delay(void *reg_base,
77 unsigned int ref_clk, unsigned int sclk_hz,
78 unsigned int tshsl_ns, unsigned int tsd2d_ns,
79 unsigned int tchsh_ns, unsigned int tslch_ns);
80void cadence_qspi_apb_enter_xip(void *reg_base, char xip_dummy);
81void cadence_qspi_apb_readdata_capture(void *reg_base,
82 unsigned int bypass, unsigned int delay);
83
84#endif /* __CADENCE_QSPI_H__ */