2 * Driver for Cadence QSPI Controller
4 * Copyright Altera Corporation (C) 2012-2014. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
16 * this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <linux/clk.h>
19 #include <linux/completion.h>
20 #include <linux/delay.h>
21 #include <linux/err.h>
22 #include <linux/errno.h>
23 #include <linux/interrupt.h>
25 #include <linux/jiffies.h>
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/mtd/mtd.h>
29 #include <linux/mtd/partitions.h>
30 #include <linux/mtd/spi-nor.h>
31 #include <linux/of_device.h>
33 #include <linux/platform_device.h>
34 #include <linux/pm_runtime.h>
35 #include <linux/sched.h>
36 #include <linux/spi/spi.h>
37 #include <linux/timer.h>
39 #define CQSPI_NAME "cadence-qspi"
40 #define CQSPI_MAX_CHIPSELECT 16
43 #define CQSPI_NEEDS_WR_DELAY BIT(0)
47 struct cqspi_flash_pdata
{
49 struct cqspi_st
*cqspi
;
65 struct platform_device
*pdev
;
71 void __iomem
*ahb_base
;
72 resource_size_t ahb_size
;
73 struct completion transfer_complete
;
74 struct mutex bus_mutex
;
77 int current_page_size
;
78 int current_erase_size
;
79 int current_addr_width
;
80 unsigned long master_ref_clk_hz
;
87 struct cqspi_flash_pdata f_pdata
[CQSPI_MAX_CHIPSELECT
];
90 /* Operation timeout value */
91 #define CQSPI_TIMEOUT_MS 500
92 #define CQSPI_READ_TIMEOUT_MS 10
94 /* Instruction type */
95 #define CQSPI_INST_TYPE_SINGLE 0
96 #define CQSPI_INST_TYPE_DUAL 1
97 #define CQSPI_INST_TYPE_QUAD 2
99 #define CQSPI_DUMMY_CLKS_PER_BYTE 8
100 #define CQSPI_DUMMY_BYTES_MAX 4
101 #define CQSPI_DUMMY_CLKS_MAX 31
103 #define CQSPI_STIG_DATA_LEN_MAX 8
106 #define CQSPI_REG_CONFIG 0x00
107 #define CQSPI_REG_CONFIG_ENABLE_MASK BIT(0)
108 #define CQSPI_REG_CONFIG_ENB_DIR_ACC_CTRL BIT(7)
109 #define CQSPI_REG_CONFIG_DECODE_MASK BIT(9)
110 #define CQSPI_REG_CONFIG_CHIPSELECT_LSB 10
111 #define CQSPI_REG_CONFIG_DMA_MASK BIT(15)
112 #define CQSPI_REG_CONFIG_BAUD_LSB 19
113 #define CQSPI_REG_CONFIG_IDLE_LSB 31
114 #define CQSPI_REG_CONFIG_CHIPSELECT_MASK 0xF
115 #define CQSPI_REG_CONFIG_BAUD_MASK 0xF
117 #define CQSPI_REG_RD_INSTR 0x04
118 #define CQSPI_REG_RD_INSTR_OPCODE_LSB 0
119 #define CQSPI_REG_RD_INSTR_TYPE_INSTR_LSB 8
120 #define CQSPI_REG_RD_INSTR_TYPE_ADDR_LSB 12
121 #define CQSPI_REG_RD_INSTR_TYPE_DATA_LSB 16
122 #define CQSPI_REG_RD_INSTR_MODE_EN_LSB 20
123 #define CQSPI_REG_RD_INSTR_DUMMY_LSB 24
124 #define CQSPI_REG_RD_INSTR_TYPE_INSTR_MASK 0x3
125 #define CQSPI_REG_RD_INSTR_TYPE_ADDR_MASK 0x3
126 #define CQSPI_REG_RD_INSTR_TYPE_DATA_MASK 0x3
127 #define CQSPI_REG_RD_INSTR_DUMMY_MASK 0x1F
129 #define CQSPI_REG_WR_INSTR 0x08
130 #define CQSPI_REG_WR_INSTR_OPCODE_LSB 0
131 #define CQSPI_REG_WR_INSTR_TYPE_ADDR_LSB 12
132 #define CQSPI_REG_WR_INSTR_TYPE_DATA_LSB 16
134 #define CQSPI_REG_DELAY 0x0C
135 #define CQSPI_REG_DELAY_TSLCH_LSB 0
136 #define CQSPI_REG_DELAY_TCHSH_LSB 8
137 #define CQSPI_REG_DELAY_TSD2D_LSB 16
138 #define CQSPI_REG_DELAY_TSHSL_LSB 24
139 #define CQSPI_REG_DELAY_TSLCH_MASK 0xFF
140 #define CQSPI_REG_DELAY_TCHSH_MASK 0xFF
141 #define CQSPI_REG_DELAY_TSD2D_MASK 0xFF
142 #define CQSPI_REG_DELAY_TSHSL_MASK 0xFF
144 #define CQSPI_REG_READCAPTURE 0x10
145 #define CQSPI_REG_READCAPTURE_BYPASS_LSB 0
146 #define CQSPI_REG_READCAPTURE_DELAY_LSB 1
147 #define CQSPI_REG_READCAPTURE_DELAY_MASK 0xF
149 #define CQSPI_REG_SIZE 0x14
150 #define CQSPI_REG_SIZE_ADDRESS_LSB 0
151 #define CQSPI_REG_SIZE_PAGE_LSB 4
152 #define CQSPI_REG_SIZE_BLOCK_LSB 16
153 #define CQSPI_REG_SIZE_ADDRESS_MASK 0xF
154 #define CQSPI_REG_SIZE_PAGE_MASK 0xFFF
155 #define CQSPI_REG_SIZE_BLOCK_MASK 0x3F
157 #define CQSPI_REG_SRAMPARTITION 0x18
158 #define CQSPI_REG_INDIRECTTRIGGER 0x1C
160 #define CQSPI_REG_DMA 0x20
161 #define CQSPI_REG_DMA_SINGLE_LSB 0
162 #define CQSPI_REG_DMA_BURST_LSB 8
163 #define CQSPI_REG_DMA_SINGLE_MASK 0xFF
164 #define CQSPI_REG_DMA_BURST_MASK 0xFF
166 #define CQSPI_REG_REMAP 0x24
167 #define CQSPI_REG_MODE_BIT 0x28
169 #define CQSPI_REG_SDRAMLEVEL 0x2C
170 #define CQSPI_REG_SDRAMLEVEL_RD_LSB 0
171 #define CQSPI_REG_SDRAMLEVEL_WR_LSB 16
172 #define CQSPI_REG_SDRAMLEVEL_RD_MASK 0xFFFF
173 #define CQSPI_REG_SDRAMLEVEL_WR_MASK 0xFFFF
175 #define CQSPI_REG_IRQSTATUS 0x40
176 #define CQSPI_REG_IRQMASK 0x44
178 #define CQSPI_REG_INDIRECTRD 0x60
179 #define CQSPI_REG_INDIRECTRD_START_MASK BIT(0)
180 #define CQSPI_REG_INDIRECTRD_CANCEL_MASK BIT(1)
181 #define CQSPI_REG_INDIRECTRD_DONE_MASK BIT(5)
183 #define CQSPI_REG_INDIRECTRDWATERMARK 0x64
184 #define CQSPI_REG_INDIRECTRDSTARTADDR 0x68
185 #define CQSPI_REG_INDIRECTRDBYTES 0x6C
187 #define CQSPI_REG_CMDCTRL 0x90
188 #define CQSPI_REG_CMDCTRL_EXECUTE_MASK BIT(0)
189 #define CQSPI_REG_CMDCTRL_INPROGRESS_MASK BIT(1)
190 #define CQSPI_REG_CMDCTRL_WR_BYTES_LSB 12
191 #define CQSPI_REG_CMDCTRL_WR_EN_LSB 15
192 #define CQSPI_REG_CMDCTRL_ADD_BYTES_LSB 16
193 #define CQSPI_REG_CMDCTRL_ADDR_EN_LSB 19
194 #define CQSPI_REG_CMDCTRL_RD_BYTES_LSB 20
195 #define CQSPI_REG_CMDCTRL_RD_EN_LSB 23
196 #define CQSPI_REG_CMDCTRL_OPCODE_LSB 24
197 #define CQSPI_REG_CMDCTRL_WR_BYTES_MASK 0x7
198 #define CQSPI_REG_CMDCTRL_ADD_BYTES_MASK 0x3
199 #define CQSPI_REG_CMDCTRL_RD_BYTES_MASK 0x7
201 #define CQSPI_REG_INDIRECTWR 0x70
202 #define CQSPI_REG_INDIRECTWR_START_MASK BIT(0)
203 #define CQSPI_REG_INDIRECTWR_CANCEL_MASK BIT(1)
204 #define CQSPI_REG_INDIRECTWR_DONE_MASK BIT(5)
206 #define CQSPI_REG_INDIRECTWRWATERMARK 0x74
207 #define CQSPI_REG_INDIRECTWRSTARTADDR 0x78
208 #define CQSPI_REG_INDIRECTWRBYTES 0x7C
210 #define CQSPI_REG_CMDADDRESS 0x94
211 #define CQSPI_REG_CMDREADDATALOWER 0xA0
212 #define CQSPI_REG_CMDREADDATAUPPER 0xA4
213 #define CQSPI_REG_CMDWRITEDATALOWER 0xA8
214 #define CQSPI_REG_CMDWRITEDATAUPPER 0xAC
216 /* Interrupt status bits */
217 #define CQSPI_REG_IRQ_MODE_ERR BIT(0)
218 #define CQSPI_REG_IRQ_UNDERFLOW BIT(1)
219 #define CQSPI_REG_IRQ_IND_COMP BIT(2)
220 #define CQSPI_REG_IRQ_IND_RD_REJECT BIT(3)
221 #define CQSPI_REG_IRQ_WR_PROTECTED_ERR BIT(4)
222 #define CQSPI_REG_IRQ_ILLEGAL_AHB_ERR BIT(5)
223 #define CQSPI_REG_IRQ_WATERMARK BIT(6)
224 #define CQSPI_REG_IRQ_IND_SRAM_FULL BIT(12)
226 #define CQSPI_IRQ_MASK_RD (CQSPI_REG_IRQ_WATERMARK | \
227 CQSPI_REG_IRQ_IND_SRAM_FULL | \
228 CQSPI_REG_IRQ_IND_COMP)
230 #define CQSPI_IRQ_MASK_WR (CQSPI_REG_IRQ_IND_COMP | \
231 CQSPI_REG_IRQ_WATERMARK | \
232 CQSPI_REG_IRQ_UNDERFLOW)
234 #define CQSPI_IRQ_STATUS_MASK 0x1FFFF
236 static int cqspi_wait_for_bit(void __iomem
*reg
, const u32 mask
, bool clear
)
238 unsigned long end
= jiffies
+ msecs_to_jiffies(CQSPI_TIMEOUT_MS
);
250 if (time_after(jiffies
, end
))
255 static bool cqspi_is_idle(struct cqspi_st
*cqspi
)
257 u32 reg
= readl(cqspi
->iobase
+ CQSPI_REG_CONFIG
);
259 return reg
& (1 << CQSPI_REG_CONFIG_IDLE_LSB
);
262 static u32
cqspi_get_rd_sram_level(struct cqspi_st
*cqspi
)
264 u32 reg
= readl(cqspi
->iobase
+ CQSPI_REG_SDRAMLEVEL
);
266 reg
>>= CQSPI_REG_SDRAMLEVEL_RD_LSB
;
267 return reg
& CQSPI_REG_SDRAMLEVEL_RD_MASK
;
270 static irqreturn_t
cqspi_irq_handler(int this_irq
, void *dev
)
272 struct cqspi_st
*cqspi
= dev
;
273 unsigned int irq_status
;
275 /* Read interrupt status */
276 irq_status
= readl(cqspi
->iobase
+ CQSPI_REG_IRQSTATUS
);
278 /* Clear interrupt */
279 writel(irq_status
, cqspi
->iobase
+ CQSPI_REG_IRQSTATUS
);
281 irq_status
&= CQSPI_IRQ_MASK_RD
| CQSPI_IRQ_MASK_WR
;
284 complete(&cqspi
->transfer_complete
);
289 static unsigned int cqspi_calc_rdreg(struct spi_nor
*nor
, const u8 opcode
)
291 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
294 rdreg
|= f_pdata
->inst_width
<< CQSPI_REG_RD_INSTR_TYPE_INSTR_LSB
;
295 rdreg
|= f_pdata
->addr_width
<< CQSPI_REG_RD_INSTR_TYPE_ADDR_LSB
;
296 rdreg
|= f_pdata
->data_width
<< CQSPI_REG_RD_INSTR_TYPE_DATA_LSB
;
301 static int cqspi_wait_idle(struct cqspi_st
*cqspi
)
303 const unsigned int poll_idle_retry
= 3;
304 unsigned int count
= 0;
305 unsigned long timeout
;
307 timeout
= jiffies
+ msecs_to_jiffies(CQSPI_TIMEOUT_MS
);
310 * Read few times in succession to ensure the controller
311 * is indeed idle, that is, the bit does not transition
314 if (cqspi_is_idle(cqspi
))
319 if (count
>= poll_idle_retry
)
322 if (time_after(jiffies
, timeout
)) {
323 /* Timeout, in busy mode. */
324 dev_err(&cqspi
->pdev
->dev
,
325 "QSPI is still busy after %dms timeout.\n",
334 static int cqspi_exec_flash_cmd(struct cqspi_st
*cqspi
, unsigned int reg
)
336 void __iomem
*reg_base
= cqspi
->iobase
;
339 /* Write the CMDCTRL without start execution. */
340 writel(reg
, reg_base
+ CQSPI_REG_CMDCTRL
);
342 reg
|= CQSPI_REG_CMDCTRL_EXECUTE_MASK
;
343 writel(reg
, reg_base
+ CQSPI_REG_CMDCTRL
);
345 /* Polling for completion. */
346 ret
= cqspi_wait_for_bit(reg_base
+ CQSPI_REG_CMDCTRL
,
347 CQSPI_REG_CMDCTRL_INPROGRESS_MASK
, 1);
349 dev_err(&cqspi
->pdev
->dev
,
350 "Flash command execution timed out.\n");
354 /* Polling QSPI idle status. */
355 return cqspi_wait_idle(cqspi
);
358 static int cqspi_command_read(struct spi_nor
*nor
,
359 const u8
*txbuf
, const unsigned n_tx
,
360 u8
*rxbuf
, const unsigned n_rx
)
362 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
363 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
364 void __iomem
*reg_base
= cqspi
->iobase
;
367 unsigned int read_len
;
370 if (!n_rx
|| n_rx
> CQSPI_STIG_DATA_LEN_MAX
|| !rxbuf
) {
371 dev_err(nor
->dev
, "Invalid input argument, len %d rxbuf 0x%p\n",
376 reg
= txbuf
[0] << CQSPI_REG_CMDCTRL_OPCODE_LSB
;
378 rdreg
= cqspi_calc_rdreg(nor
, txbuf
[0]);
379 writel(rdreg
, reg_base
+ CQSPI_REG_RD_INSTR
);
381 reg
|= (0x1 << CQSPI_REG_CMDCTRL_RD_EN_LSB
);
383 /* 0 means 1 byte. */
384 reg
|= (((n_rx
- 1) & CQSPI_REG_CMDCTRL_RD_BYTES_MASK
)
385 << CQSPI_REG_CMDCTRL_RD_BYTES_LSB
);
386 status
= cqspi_exec_flash_cmd(cqspi
, reg
);
390 reg
= readl(reg_base
+ CQSPI_REG_CMDREADDATALOWER
);
392 /* Put the read value into rx_buf */
393 read_len
= (n_rx
> 4) ? 4 : n_rx
;
394 memcpy(rxbuf
, ®
, read_len
);
398 reg
= readl(reg_base
+ CQSPI_REG_CMDREADDATAUPPER
);
400 read_len
= n_rx
- read_len
;
401 memcpy(rxbuf
, ®
, read_len
);
407 static int cqspi_command_write(struct spi_nor
*nor
, const u8 opcode
,
408 const u8
*txbuf
, const unsigned n_tx
)
410 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
411 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
412 void __iomem
*reg_base
= cqspi
->iobase
;
417 if (n_tx
> 4 || (n_tx
&& !txbuf
)) {
419 "Invalid input argument, cmdlen %d txbuf 0x%p\n",
424 reg
= opcode
<< CQSPI_REG_CMDCTRL_OPCODE_LSB
;
426 reg
|= (0x1 << CQSPI_REG_CMDCTRL_WR_EN_LSB
);
427 reg
|= ((n_tx
- 1) & CQSPI_REG_CMDCTRL_WR_BYTES_MASK
)
428 << CQSPI_REG_CMDCTRL_WR_BYTES_LSB
;
430 memcpy(&data
, txbuf
, n_tx
);
431 writel(data
, reg_base
+ CQSPI_REG_CMDWRITEDATALOWER
);
434 ret
= cqspi_exec_flash_cmd(cqspi
, reg
);
438 static int cqspi_command_write_addr(struct spi_nor
*nor
,
439 const u8 opcode
, const unsigned int addr
)
441 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
442 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
443 void __iomem
*reg_base
= cqspi
->iobase
;
446 reg
= opcode
<< CQSPI_REG_CMDCTRL_OPCODE_LSB
;
447 reg
|= (0x1 << CQSPI_REG_CMDCTRL_ADDR_EN_LSB
);
448 reg
|= ((nor
->addr_width
- 1) & CQSPI_REG_CMDCTRL_ADD_BYTES_MASK
)
449 << CQSPI_REG_CMDCTRL_ADD_BYTES_LSB
;
451 writel(addr
, reg_base
+ CQSPI_REG_CMDADDRESS
);
453 return cqspi_exec_flash_cmd(cqspi
, reg
);
456 static int cqspi_read_setup(struct spi_nor
*nor
)
458 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
459 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
460 void __iomem
*reg_base
= cqspi
->iobase
;
461 unsigned int dummy_clk
= 0;
464 reg
= nor
->read_opcode
<< CQSPI_REG_RD_INSTR_OPCODE_LSB
;
465 reg
|= cqspi_calc_rdreg(nor
, nor
->read_opcode
);
467 /* Setup dummy clock cycles */
468 dummy_clk
= nor
->read_dummy
;
469 if (dummy_clk
> CQSPI_DUMMY_CLKS_MAX
)
470 dummy_clk
= CQSPI_DUMMY_CLKS_MAX
;
473 reg
|= (1 << CQSPI_REG_RD_INSTR_MODE_EN_LSB
);
474 /* Set mode bits high to ensure chip doesn't enter XIP */
475 writel(0xFF, reg_base
+ CQSPI_REG_MODE_BIT
);
477 /* Need to subtract the mode byte (8 clocks). */
478 if (f_pdata
->inst_width
!= CQSPI_INST_TYPE_QUAD
)
482 reg
|= (dummy_clk
& CQSPI_REG_RD_INSTR_DUMMY_MASK
)
483 << CQSPI_REG_RD_INSTR_DUMMY_LSB
;
486 writel(reg
, reg_base
+ CQSPI_REG_RD_INSTR
);
488 /* Set address width */
489 reg
= readl(reg_base
+ CQSPI_REG_SIZE
);
490 reg
&= ~CQSPI_REG_SIZE_ADDRESS_MASK
;
491 reg
|= (nor
->addr_width
- 1);
492 writel(reg
, reg_base
+ CQSPI_REG_SIZE
);
496 static int cqspi_indirect_read_execute(struct spi_nor
*nor
, u8
*rxbuf
,
497 loff_t from_addr
, const size_t n_rx
)
499 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
500 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
501 void __iomem
*reg_base
= cqspi
->iobase
;
502 void __iomem
*ahb_base
= cqspi
->ahb_base
;
503 unsigned int remaining
= n_rx
;
504 unsigned int bytes_to_read
= 0;
507 writel(from_addr
, reg_base
+ CQSPI_REG_INDIRECTRDSTARTADDR
);
508 writel(remaining
, reg_base
+ CQSPI_REG_INDIRECTRDBYTES
);
510 /* Clear all interrupts. */
511 writel(CQSPI_IRQ_STATUS_MASK
, reg_base
+ CQSPI_REG_IRQSTATUS
);
513 writel(CQSPI_IRQ_MASK_RD
, reg_base
+ CQSPI_REG_IRQMASK
);
515 reinit_completion(&cqspi
->transfer_complete
);
516 writel(CQSPI_REG_INDIRECTRD_START_MASK
,
517 reg_base
+ CQSPI_REG_INDIRECTRD
);
519 while (remaining
> 0) {
520 ret
= wait_for_completion_timeout(&cqspi
->transfer_complete
,
522 (CQSPI_READ_TIMEOUT_MS
));
524 bytes_to_read
= cqspi_get_rd_sram_level(cqspi
);
526 if (!ret
&& bytes_to_read
== 0) {
527 dev_err(nor
->dev
, "Indirect read timeout, no bytes\n");
532 while (bytes_to_read
!= 0) {
533 bytes_to_read
*= cqspi
->fifo_width
;
534 bytes_to_read
= bytes_to_read
> remaining
?
535 remaining
: bytes_to_read
;
536 ioread32_rep(ahb_base
, rxbuf
,
537 DIV_ROUND_UP(bytes_to_read
, 4));
538 rxbuf
+= bytes_to_read
;
539 remaining
-= bytes_to_read
;
540 bytes_to_read
= cqspi_get_rd_sram_level(cqspi
);
544 reinit_completion(&cqspi
->transfer_complete
);
547 /* Check indirect done status */
548 ret
= cqspi_wait_for_bit(reg_base
+ CQSPI_REG_INDIRECTRD
,
549 CQSPI_REG_INDIRECTRD_DONE_MASK
, 0);
552 "Indirect read completion error (%i)\n", ret
);
556 /* Disable interrupt */
557 writel(0, reg_base
+ CQSPI_REG_IRQMASK
);
559 /* Clear indirect completion status */
560 writel(CQSPI_REG_INDIRECTRD_DONE_MASK
, reg_base
+ CQSPI_REG_INDIRECTRD
);
565 /* Disable interrupt */
566 writel(0, reg_base
+ CQSPI_REG_IRQMASK
);
568 /* Cancel the indirect read */
569 writel(CQSPI_REG_INDIRECTWR_CANCEL_MASK
,
570 reg_base
+ CQSPI_REG_INDIRECTRD
);
574 static int cqspi_write_setup(struct spi_nor
*nor
)
577 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
578 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
579 void __iomem
*reg_base
= cqspi
->iobase
;
582 reg
= nor
->program_opcode
<< CQSPI_REG_WR_INSTR_OPCODE_LSB
;
583 writel(reg
, reg_base
+ CQSPI_REG_WR_INSTR
);
584 reg
= cqspi_calc_rdreg(nor
, nor
->program_opcode
);
585 writel(reg
, reg_base
+ CQSPI_REG_RD_INSTR
);
587 reg
= readl(reg_base
+ CQSPI_REG_SIZE
);
588 reg
&= ~CQSPI_REG_SIZE_ADDRESS_MASK
;
589 reg
|= (nor
->addr_width
- 1);
590 writel(reg
, reg_base
+ CQSPI_REG_SIZE
);
594 static int cqspi_indirect_write_execute(struct spi_nor
*nor
, loff_t to_addr
,
595 const u8
*txbuf
, const size_t n_tx
)
597 const unsigned int page_size
= nor
->page_size
;
598 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
599 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
600 void __iomem
*reg_base
= cqspi
->iobase
;
601 unsigned int remaining
= n_tx
;
602 unsigned int write_bytes
;
605 writel(to_addr
, reg_base
+ CQSPI_REG_INDIRECTWRSTARTADDR
);
606 writel(remaining
, reg_base
+ CQSPI_REG_INDIRECTWRBYTES
);
608 /* Clear all interrupts. */
609 writel(CQSPI_IRQ_STATUS_MASK
, reg_base
+ CQSPI_REG_IRQSTATUS
);
611 writel(CQSPI_IRQ_MASK_WR
, reg_base
+ CQSPI_REG_IRQMASK
);
613 reinit_completion(&cqspi
->transfer_complete
);
614 writel(CQSPI_REG_INDIRECTWR_START_MASK
,
615 reg_base
+ CQSPI_REG_INDIRECTWR
);
617 * As per 66AK2G02 TRM SPRUHY8F section 11.15.5.3 Indirect Access
618 * Controller programming sequence, couple of cycles of
619 * QSPI_REF_CLK delay is required for the above bit to
620 * be internally synchronized by the QSPI module. Provide 5
624 ndelay(cqspi
->wr_delay
);
626 while (remaining
> 0) {
627 write_bytes
= remaining
> page_size
? page_size
: remaining
;
628 iowrite32_rep(cqspi
->ahb_base
, txbuf
,
629 DIV_ROUND_UP(write_bytes
, 4));
631 ret
= wait_for_completion_timeout(&cqspi
->transfer_complete
,
635 dev_err(nor
->dev
, "Indirect write timeout\n");
640 txbuf
+= write_bytes
;
641 remaining
-= write_bytes
;
644 reinit_completion(&cqspi
->transfer_complete
);
647 /* Check indirect done status */
648 ret
= cqspi_wait_for_bit(reg_base
+ CQSPI_REG_INDIRECTWR
,
649 CQSPI_REG_INDIRECTWR_DONE_MASK
, 0);
652 "Indirect write completion error (%i)\n", ret
);
656 /* Disable interrupt. */
657 writel(0, reg_base
+ CQSPI_REG_IRQMASK
);
659 /* Clear indirect completion status */
660 writel(CQSPI_REG_INDIRECTWR_DONE_MASK
, reg_base
+ CQSPI_REG_INDIRECTWR
);
662 cqspi_wait_idle(cqspi
);
667 /* Disable interrupt. */
668 writel(0, reg_base
+ CQSPI_REG_IRQMASK
);
670 /* Cancel the indirect write */
671 writel(CQSPI_REG_INDIRECTWR_CANCEL_MASK
,
672 reg_base
+ CQSPI_REG_INDIRECTWR
);
676 static void cqspi_chipselect(struct spi_nor
*nor
)
678 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
679 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
680 void __iomem
*reg_base
= cqspi
->iobase
;
681 unsigned int chip_select
= f_pdata
->cs
;
684 reg
= readl(reg_base
+ CQSPI_REG_CONFIG
);
685 if (cqspi
->is_decoded_cs
) {
686 reg
|= CQSPI_REG_CONFIG_DECODE_MASK
;
688 reg
&= ~CQSPI_REG_CONFIG_DECODE_MASK
;
690 /* Convert CS if without decoder.
696 chip_select
= 0xF & ~(1 << chip_select
);
699 reg
&= ~(CQSPI_REG_CONFIG_CHIPSELECT_MASK
700 << CQSPI_REG_CONFIG_CHIPSELECT_LSB
);
701 reg
|= (chip_select
& CQSPI_REG_CONFIG_CHIPSELECT_MASK
)
702 << CQSPI_REG_CONFIG_CHIPSELECT_LSB
;
703 writel(reg
, reg_base
+ CQSPI_REG_CONFIG
);
706 static void cqspi_configure_cs_and_sizes(struct spi_nor
*nor
)
708 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
709 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
710 void __iomem
*iobase
= cqspi
->iobase
;
713 /* configure page size and block size. */
714 reg
= readl(iobase
+ CQSPI_REG_SIZE
);
715 reg
&= ~(CQSPI_REG_SIZE_PAGE_MASK
<< CQSPI_REG_SIZE_PAGE_LSB
);
716 reg
&= ~(CQSPI_REG_SIZE_BLOCK_MASK
<< CQSPI_REG_SIZE_BLOCK_LSB
);
717 reg
&= ~CQSPI_REG_SIZE_ADDRESS_MASK
;
718 reg
|= (nor
->page_size
<< CQSPI_REG_SIZE_PAGE_LSB
);
719 reg
|= (ilog2(nor
->mtd
.erasesize
) << CQSPI_REG_SIZE_BLOCK_LSB
);
720 reg
|= (nor
->addr_width
- 1);
721 writel(reg
, iobase
+ CQSPI_REG_SIZE
);
723 /* configure the chip select */
724 cqspi_chipselect(nor
);
726 /* Store the new configuration of the controller */
727 cqspi
->current_page_size
= nor
->page_size
;
728 cqspi
->current_erase_size
= nor
->mtd
.erasesize
;
729 cqspi
->current_addr_width
= nor
->addr_width
;
732 static unsigned int calculate_ticks_for_ns(const unsigned int ref_clk_hz
,
733 const unsigned int ns_val
)
737 ticks
= ref_clk_hz
/ 1000; /* kHz */
738 ticks
= DIV_ROUND_UP(ticks
* ns_val
, 1000000);
743 static void cqspi_delay(struct spi_nor
*nor
)
745 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
746 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
747 void __iomem
*iobase
= cqspi
->iobase
;
748 const unsigned int ref_clk_hz
= cqspi
->master_ref_clk_hz
;
749 unsigned int tshsl
, tchsh
, tslch
, tsd2d
;
753 /* calculate the number of ref ticks for one sclk tick */
754 tsclk
= DIV_ROUND_UP(ref_clk_hz
, cqspi
->sclk
);
756 tshsl
= calculate_ticks_for_ns(ref_clk_hz
, f_pdata
->tshsl_ns
);
757 /* this particular value must be at least one sclk */
761 tchsh
= calculate_ticks_for_ns(ref_clk_hz
, f_pdata
->tchsh_ns
);
762 tslch
= calculate_ticks_for_ns(ref_clk_hz
, f_pdata
->tslch_ns
);
763 tsd2d
= calculate_ticks_for_ns(ref_clk_hz
, f_pdata
->tsd2d_ns
);
765 reg
= (tshsl
& CQSPI_REG_DELAY_TSHSL_MASK
)
766 << CQSPI_REG_DELAY_TSHSL_LSB
;
767 reg
|= (tchsh
& CQSPI_REG_DELAY_TCHSH_MASK
)
768 << CQSPI_REG_DELAY_TCHSH_LSB
;
769 reg
|= (tslch
& CQSPI_REG_DELAY_TSLCH_MASK
)
770 << CQSPI_REG_DELAY_TSLCH_LSB
;
771 reg
|= (tsd2d
& CQSPI_REG_DELAY_TSD2D_MASK
)
772 << CQSPI_REG_DELAY_TSD2D_LSB
;
773 writel(reg
, iobase
+ CQSPI_REG_DELAY
);
776 static void cqspi_config_baudrate_div(struct cqspi_st
*cqspi
)
778 const unsigned int ref_clk_hz
= cqspi
->master_ref_clk_hz
;
779 void __iomem
*reg_base
= cqspi
->iobase
;
782 /* Recalculate the baudrate divisor based on QSPI specification. */
783 div
= DIV_ROUND_UP(ref_clk_hz
, 2 * cqspi
->sclk
) - 1;
785 reg
= readl(reg_base
+ CQSPI_REG_CONFIG
);
786 reg
&= ~(CQSPI_REG_CONFIG_BAUD_MASK
<< CQSPI_REG_CONFIG_BAUD_LSB
);
787 reg
|= (div
& CQSPI_REG_CONFIG_BAUD_MASK
) << CQSPI_REG_CONFIG_BAUD_LSB
;
788 writel(reg
, reg_base
+ CQSPI_REG_CONFIG
);
791 static void cqspi_readdata_capture(struct cqspi_st
*cqspi
,
793 const unsigned int delay
)
795 void __iomem
*reg_base
= cqspi
->iobase
;
798 reg
= readl(reg_base
+ CQSPI_REG_READCAPTURE
);
801 reg
|= (1 << CQSPI_REG_READCAPTURE_BYPASS_LSB
);
803 reg
&= ~(1 << CQSPI_REG_READCAPTURE_BYPASS_LSB
);
805 reg
&= ~(CQSPI_REG_READCAPTURE_DELAY_MASK
806 << CQSPI_REG_READCAPTURE_DELAY_LSB
);
808 reg
|= (delay
& CQSPI_REG_READCAPTURE_DELAY_MASK
)
809 << CQSPI_REG_READCAPTURE_DELAY_LSB
;
811 writel(reg
, reg_base
+ CQSPI_REG_READCAPTURE
);
814 static void cqspi_controller_enable(struct cqspi_st
*cqspi
, bool enable
)
816 void __iomem
*reg_base
= cqspi
->iobase
;
819 reg
= readl(reg_base
+ CQSPI_REG_CONFIG
);
822 reg
|= CQSPI_REG_CONFIG_ENABLE_MASK
;
824 reg
&= ~CQSPI_REG_CONFIG_ENABLE_MASK
;
826 writel(reg
, reg_base
+ CQSPI_REG_CONFIG
);
829 static void cqspi_configure(struct spi_nor
*nor
)
831 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
832 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
833 const unsigned int sclk
= f_pdata
->clk_rate
;
834 int switch_cs
= (cqspi
->current_cs
!= f_pdata
->cs
);
835 int switch_ck
= (cqspi
->sclk
!= sclk
);
837 if ((cqspi
->current_page_size
!= nor
->page_size
) ||
838 (cqspi
->current_erase_size
!= nor
->mtd
.erasesize
) ||
839 (cqspi
->current_addr_width
!= nor
->addr_width
))
842 if (switch_cs
|| switch_ck
)
843 cqspi_controller_enable(cqspi
, 0);
845 /* Switch chip select. */
847 cqspi
->current_cs
= f_pdata
->cs
;
848 cqspi_configure_cs_and_sizes(nor
);
851 /* Setup baudrate divisor and delays */
854 cqspi_config_baudrate_div(cqspi
);
856 cqspi_readdata_capture(cqspi
, !cqspi
->rclk_en
,
857 f_pdata
->read_delay
);
860 if (switch_cs
|| switch_ck
)
861 cqspi_controller_enable(cqspi
, 1);
864 static int cqspi_set_protocol(struct spi_nor
*nor
, const int read
)
866 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
868 f_pdata
->inst_width
= CQSPI_INST_TYPE_SINGLE
;
869 f_pdata
->addr_width
= CQSPI_INST_TYPE_SINGLE
;
870 f_pdata
->data_width
= CQSPI_INST_TYPE_SINGLE
;
873 switch (nor
->read_proto
) {
874 case SNOR_PROTO_1_1_1
:
875 f_pdata
->data_width
= CQSPI_INST_TYPE_SINGLE
;
877 case SNOR_PROTO_1_1_2
:
878 f_pdata
->data_width
= CQSPI_INST_TYPE_DUAL
;
880 case SNOR_PROTO_1_1_4
:
881 f_pdata
->data_width
= CQSPI_INST_TYPE_QUAD
;
888 cqspi_configure(nor
);
893 static ssize_t
cqspi_write(struct spi_nor
*nor
, loff_t to
,
894 size_t len
, const u_char
*buf
)
896 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
897 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
900 ret
= cqspi_set_protocol(nor
, 0);
904 ret
= cqspi_write_setup(nor
);
908 if (f_pdata
->use_direct_mode
)
909 memcpy_toio(cqspi
->ahb_base
+ to
, buf
, len
);
911 ret
= cqspi_indirect_write_execute(nor
, to
, buf
, len
);
918 static ssize_t
cqspi_read(struct spi_nor
*nor
, loff_t from
,
919 size_t len
, u_char
*buf
)
921 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
922 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
925 ret
= cqspi_set_protocol(nor
, 1);
929 ret
= cqspi_read_setup(nor
);
933 if (f_pdata
->use_direct_mode
)
934 memcpy_fromio(buf
, cqspi
->ahb_base
+ from
, len
);
936 ret
= cqspi_indirect_read_execute(nor
, buf
, from
, len
);
943 static int cqspi_erase(struct spi_nor
*nor
, loff_t offs
)
947 ret
= cqspi_set_protocol(nor
, 0);
951 /* Send write enable, then erase commands. */
952 ret
= nor
->write_reg(nor
, SPINOR_OP_WREN
, NULL
, 0);
956 /* Set up command buffer. */
957 ret
= cqspi_command_write_addr(nor
, nor
->erase_opcode
, offs
);
964 static int cqspi_prep(struct spi_nor
*nor
, enum spi_nor_ops ops
)
966 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
967 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
969 mutex_lock(&cqspi
->bus_mutex
);
974 static void cqspi_unprep(struct spi_nor
*nor
, enum spi_nor_ops ops
)
976 struct cqspi_flash_pdata
*f_pdata
= nor
->priv
;
977 struct cqspi_st
*cqspi
= f_pdata
->cqspi
;
979 mutex_unlock(&cqspi
->bus_mutex
);
982 static int cqspi_read_reg(struct spi_nor
*nor
, u8 opcode
, u8
*buf
, int len
)
986 ret
= cqspi_set_protocol(nor
, 0);
988 ret
= cqspi_command_read(nor
, &opcode
, 1, buf
, len
);
993 static int cqspi_write_reg(struct spi_nor
*nor
, u8 opcode
, u8
*buf
, int len
)
997 ret
= cqspi_set_protocol(nor
, 0);
999 ret
= cqspi_command_write(nor
, opcode
, buf
, len
);
1004 static int cqspi_of_get_flash_pdata(struct platform_device
*pdev
,
1005 struct cqspi_flash_pdata
*f_pdata
,
1006 struct device_node
*np
)
1008 if (of_property_read_u32(np
, "cdns,read-delay", &f_pdata
->read_delay
)) {
1009 dev_err(&pdev
->dev
, "couldn't determine read-delay\n");
1013 if (of_property_read_u32(np
, "cdns,tshsl-ns", &f_pdata
->tshsl_ns
)) {
1014 dev_err(&pdev
->dev
, "couldn't determine tshsl-ns\n");
1018 if (of_property_read_u32(np
, "cdns,tsd2d-ns", &f_pdata
->tsd2d_ns
)) {
1019 dev_err(&pdev
->dev
, "couldn't determine tsd2d-ns\n");
1023 if (of_property_read_u32(np
, "cdns,tchsh-ns", &f_pdata
->tchsh_ns
)) {
1024 dev_err(&pdev
->dev
, "couldn't determine tchsh-ns\n");
1028 if (of_property_read_u32(np
, "cdns,tslch-ns", &f_pdata
->tslch_ns
)) {
1029 dev_err(&pdev
->dev
, "couldn't determine tslch-ns\n");
1033 if (of_property_read_u32(np
, "spi-max-frequency", &f_pdata
->clk_rate
)) {
1034 dev_err(&pdev
->dev
, "couldn't determine spi-max-frequency\n");
1041 static int cqspi_of_get_pdata(struct platform_device
*pdev
)
1043 struct device_node
*np
= pdev
->dev
.of_node
;
1044 struct cqspi_st
*cqspi
= platform_get_drvdata(pdev
);
1046 cqspi
->is_decoded_cs
= of_property_read_bool(np
, "cdns,is-decoded-cs");
1048 if (of_property_read_u32(np
, "cdns,fifo-depth", &cqspi
->fifo_depth
)) {
1049 dev_err(&pdev
->dev
, "couldn't determine fifo-depth\n");
1053 if (of_property_read_u32(np
, "cdns,fifo-width", &cqspi
->fifo_width
)) {
1054 dev_err(&pdev
->dev
, "couldn't determine fifo-width\n");
1058 if (of_property_read_u32(np
, "cdns,trigger-address",
1059 &cqspi
->trigger_address
)) {
1060 dev_err(&pdev
->dev
, "couldn't determine trigger-address\n");
1064 cqspi
->rclk_en
= of_property_read_bool(np
, "cdns,rclk-en");
1069 static void cqspi_controller_init(struct cqspi_st
*cqspi
)
1073 cqspi_controller_enable(cqspi
, 0);
1075 /* Configure the remap address register, no remap */
1076 writel(0, cqspi
->iobase
+ CQSPI_REG_REMAP
);
1078 /* Disable all interrupts. */
1079 writel(0, cqspi
->iobase
+ CQSPI_REG_IRQMASK
);
1081 /* Configure the SRAM split to 1:1 . */
1082 writel(cqspi
->fifo_depth
/ 2, cqspi
->iobase
+ CQSPI_REG_SRAMPARTITION
);
1084 /* Load indirect trigger address. */
1085 writel(cqspi
->trigger_address
,
1086 cqspi
->iobase
+ CQSPI_REG_INDIRECTTRIGGER
);
1088 /* Program read watermark -- 1/2 of the FIFO. */
1089 writel(cqspi
->fifo_depth
* cqspi
->fifo_width
/ 2,
1090 cqspi
->iobase
+ CQSPI_REG_INDIRECTRDWATERMARK
);
1091 /* Program write watermark -- 1/8 of the FIFO. */
1092 writel(cqspi
->fifo_depth
* cqspi
->fifo_width
/ 8,
1093 cqspi
->iobase
+ CQSPI_REG_INDIRECTWRWATERMARK
);
1095 /* Enable Direct Access Controller */
1096 reg
= readl(cqspi
->iobase
+ CQSPI_REG_CONFIG
);
1097 reg
|= CQSPI_REG_CONFIG_ENB_DIR_ACC_CTRL
;
1098 writel(reg
, cqspi
->iobase
+ CQSPI_REG_CONFIG
);
1100 cqspi_controller_enable(cqspi
, 1);
1103 static int cqspi_setup_flash(struct cqspi_st
*cqspi
, struct device_node
*np
)
1105 const struct spi_nor_hwcaps hwcaps
= {
1106 .mask
= SNOR_HWCAPS_READ
|
1107 SNOR_HWCAPS_READ_FAST
|
1108 SNOR_HWCAPS_READ_1_1_2
|
1109 SNOR_HWCAPS_READ_1_1_4
|
1112 struct platform_device
*pdev
= cqspi
->pdev
;
1113 struct device
*dev
= &pdev
->dev
;
1114 struct cqspi_flash_pdata
*f_pdata
;
1115 struct spi_nor
*nor
;
1116 struct mtd_info
*mtd
;
1120 /* Get flash device data */
1121 for_each_available_child_of_node(dev
->of_node
, np
) {
1122 ret
= of_property_read_u32(np
, "reg", &cs
);
1124 dev_err(dev
, "Couldn't determine chip select.\n");
1128 if (cs
>= CQSPI_MAX_CHIPSELECT
) {
1130 dev_err(dev
, "Chip select %d out of range.\n", cs
);
1134 f_pdata
= &cqspi
->f_pdata
[cs
];
1135 f_pdata
->cqspi
= cqspi
;
1138 ret
= cqspi_of_get_flash_pdata(pdev
, f_pdata
, np
);
1142 nor
= &f_pdata
->nor
;
1148 spi_nor_set_flash_node(nor
, np
);
1149 nor
->priv
= f_pdata
;
1151 nor
->read_reg
= cqspi_read_reg
;
1152 nor
->write_reg
= cqspi_write_reg
;
1153 nor
->read
= cqspi_read
;
1154 nor
->write
= cqspi_write
;
1155 nor
->erase
= cqspi_erase
;
1156 nor
->prepare
= cqspi_prep
;
1157 nor
->unprepare
= cqspi_unprep
;
1159 mtd
->name
= devm_kasprintf(dev
, GFP_KERNEL
, "%s.%d",
1166 ret
= spi_nor_scan(nor
, NULL
, &hwcaps
);
1170 ret
= mtd_device_register(mtd
, NULL
, 0);
1174 f_pdata
->registered
= true;
1176 if (mtd
->size
<= cqspi
->ahb_size
) {
1177 f_pdata
->use_direct_mode
= true;
1178 dev_dbg(nor
->dev
, "using direct mode for %s\n",
1186 for (i
= 0; i
< CQSPI_MAX_CHIPSELECT
; i
++)
1187 if (cqspi
->f_pdata
[i
].registered
)
1188 mtd_device_unregister(&cqspi
->f_pdata
[i
].nor
.mtd
);
1192 static int cqspi_probe(struct platform_device
*pdev
)
1194 struct device_node
*np
= pdev
->dev
.of_node
;
1195 struct device
*dev
= &pdev
->dev
;
1196 struct cqspi_st
*cqspi
;
1197 struct resource
*res
;
1198 struct resource
*res_ahb
;
1203 cqspi
= devm_kzalloc(dev
, sizeof(*cqspi
), GFP_KERNEL
);
1207 mutex_init(&cqspi
->bus_mutex
);
1209 platform_set_drvdata(pdev
, cqspi
);
1211 /* Obtain configuration from OF. */
1212 ret
= cqspi_of_get_pdata(pdev
);
1214 dev_err(dev
, "Cannot get mandatory OF data.\n");
1218 /* Obtain QSPI clock. */
1219 cqspi
->clk
= devm_clk_get(dev
, NULL
);
1220 if (IS_ERR(cqspi
->clk
)) {
1221 dev_err(dev
, "Cannot claim QSPI clock.\n");
1222 return PTR_ERR(cqspi
->clk
);
1225 /* Obtain and remap controller address. */
1226 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1227 cqspi
->iobase
= devm_ioremap_resource(dev
, res
);
1228 if (IS_ERR(cqspi
->iobase
)) {
1229 dev_err(dev
, "Cannot remap controller address.\n");
1230 return PTR_ERR(cqspi
->iobase
);
1233 /* Obtain and remap AHB address. */
1234 res_ahb
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
1235 cqspi
->ahb_base
= devm_ioremap_resource(dev
, res_ahb
);
1236 if (IS_ERR(cqspi
->ahb_base
)) {
1237 dev_err(dev
, "Cannot remap AHB address.\n");
1238 return PTR_ERR(cqspi
->ahb_base
);
1240 cqspi
->ahb_size
= resource_size(res_ahb
);
1242 init_completion(&cqspi
->transfer_complete
);
1244 /* Obtain IRQ line. */
1245 irq
= platform_get_irq(pdev
, 0);
1247 dev_err(dev
, "Cannot obtain IRQ.\n");
1251 pm_runtime_enable(dev
);
1252 ret
= pm_runtime_get_sync(dev
);
1254 pm_runtime_put_noidle(dev
);
1258 ret
= clk_prepare_enable(cqspi
->clk
);
1260 dev_err(dev
, "Cannot enable QSPI clock.\n");
1261 goto probe_clk_failed
;
1264 cqspi
->master_ref_clk_hz
= clk_get_rate(cqspi
->clk
);
1265 data
= (unsigned long)of_device_get_match_data(dev
);
1266 if (data
& CQSPI_NEEDS_WR_DELAY
)
1267 cqspi
->wr_delay
= 5 * DIV_ROUND_UP(NSEC_PER_SEC
,
1268 cqspi
->master_ref_clk_hz
);
1270 ret
= devm_request_irq(dev
, irq
, cqspi_irq_handler
, 0,
1273 dev_err(dev
, "Cannot request IRQ.\n");
1274 goto probe_irq_failed
;
1277 cqspi_wait_idle(cqspi
);
1278 cqspi_controller_init(cqspi
);
1279 cqspi
->current_cs
= -1;
1282 ret
= cqspi_setup_flash(cqspi
, np
);
1284 dev_err(dev
, "Cadence QSPI NOR probe failed %d\n", ret
);
1285 goto probe_setup_failed
;
1290 cqspi_controller_enable(cqspi
, 0);
1292 clk_disable_unprepare(cqspi
->clk
);
1294 pm_runtime_put_sync(dev
);
1295 pm_runtime_disable(dev
);
1299 static int cqspi_remove(struct platform_device
*pdev
)
1301 struct cqspi_st
*cqspi
= platform_get_drvdata(pdev
);
1304 for (i
= 0; i
< CQSPI_MAX_CHIPSELECT
; i
++)
1305 if (cqspi
->f_pdata
[i
].registered
)
1306 mtd_device_unregister(&cqspi
->f_pdata
[i
].nor
.mtd
);
1308 cqspi_controller_enable(cqspi
, 0);
1310 clk_disable_unprepare(cqspi
->clk
);
1312 pm_runtime_put_sync(&pdev
->dev
);
1313 pm_runtime_disable(&pdev
->dev
);
1318 #ifdef CONFIG_PM_SLEEP
1319 static int cqspi_suspend(struct device
*dev
)
1321 struct cqspi_st
*cqspi
= dev_get_drvdata(dev
);
1323 cqspi_controller_enable(cqspi
, 0);
1327 static int cqspi_resume(struct device
*dev
)
1329 struct cqspi_st
*cqspi
= dev_get_drvdata(dev
);
1331 cqspi_controller_enable(cqspi
, 1);
1335 static const struct dev_pm_ops cqspi__dev_pm_ops
= {
1336 .suspend
= cqspi_suspend
,
1337 .resume
= cqspi_resume
,
1340 #define CQSPI_DEV_PM_OPS (&cqspi__dev_pm_ops)
1342 #define CQSPI_DEV_PM_OPS NULL
1345 static const struct of_device_id cqspi_dt_ids
[] = {
1347 .compatible
= "cdns,qspi-nor",
1351 .compatible
= "ti,k2g-qspi",
1352 .data
= (void *)CQSPI_NEEDS_WR_DELAY
,
1354 { /* end of table */ }
1357 MODULE_DEVICE_TABLE(of
, cqspi_dt_ids
);
1359 static struct platform_driver cqspi_platform_driver
= {
1360 .probe
= cqspi_probe
,
1361 .remove
= cqspi_remove
,
1364 .pm
= CQSPI_DEV_PM_OPS
,
1365 .of_match_table
= cqspi_dt_ids
,
1369 module_platform_driver(cqspi_platform_driver
);
1371 MODULE_DESCRIPTION("Cadence QSPI Controller Driver");
1372 MODULE_LICENSE("GPL v2");
1373 MODULE_ALIAS("platform:" CQSPI_NAME
);
1374 MODULE_AUTHOR("Ley Foon Tan <lftan@altera.com>");
1375 MODULE_AUTHOR("Graham Moore <grmoore@opensource.altera.com>");