2 * Designware SPI core controller driver (refer pxa2xx_spi.c)
4 * Copyright (c) 2009, Intel Corporation.
6 * This program is free software; you can redistribute it and/or modify it
7 * 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, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
20 #include <linux/dma-mapping.h>
21 #include <linux/interrupt.h>
22 #include <linux/module.h>
23 #include <linux/highmem.h>
24 #include <linux/delay.h>
25 #include <linux/slab.h>
26 #include <linux/spi/spi.h>
30 #ifdef CONFIG_DEBUG_FS
31 #include <linux/debugfs.h>
34 #define START_STATE ((void *)0)
35 #define RUNNING_STATE ((void *)1)
36 #define DONE_STATE ((void *)2)
37 #define ERROR_STATE ((void *)-1)
39 #define QUEUE_RUNNING 0
40 #define QUEUE_STOPPED 1
42 #define MRST_SPI_DEASSERT 0
43 #define MRST_SPI_ASSERT 1
45 /* Slave spi_dev related */
48 u8 cs
; /* chip select pin */
49 u8 n_bytes
; /* current is a 1/2/4 byte op */
50 u8 tmode
; /* TR/TO/RO/EEPROM */
51 u8 type
; /* SPI/SSP/MicroWire */
53 u8 poll_mode
; /* 1 means use poll mode */
60 u16 clk_div
; /* baud rate divider */
61 u32 speed_hz
; /* baud rate */
62 void (*cs_control
)(u32 command
);
65 #ifdef CONFIG_DEBUG_FS
66 #define SPI_REGS_BUFSIZE 1024
67 static ssize_t
spi_show_regs(struct file
*file
, char __user
*user_buf
,
68 size_t count
, loff_t
*ppos
)
75 dws
= file
->private_data
;
77 buf
= kzalloc(SPI_REGS_BUFSIZE
, GFP_KERNEL
);
81 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
82 "MRST SPI0 registers:\n");
83 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
84 "=================================\n");
85 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
86 "CTRL0: \t\t0x%08x\n", dw_readl(dws
, DW_SPI_CTRL0
));
87 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
88 "CTRL1: \t\t0x%08x\n", dw_readl(dws
, DW_SPI_CTRL1
));
89 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
90 "SSIENR: \t0x%08x\n", dw_readl(dws
, DW_SPI_SSIENR
));
91 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
92 "SER: \t\t0x%08x\n", dw_readl(dws
, DW_SPI_SER
));
93 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
94 "BAUDR: \t\t0x%08x\n", dw_readl(dws
, DW_SPI_BAUDR
));
95 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
96 "TXFTLR: \t0x%08x\n", dw_readl(dws
, DW_SPI_TXFLTR
));
97 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
98 "RXFTLR: \t0x%08x\n", dw_readl(dws
, DW_SPI_RXFLTR
));
99 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
100 "TXFLR: \t\t0x%08x\n", dw_readl(dws
, DW_SPI_TXFLR
));
101 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
102 "RXFLR: \t\t0x%08x\n", dw_readl(dws
, DW_SPI_RXFLR
));
103 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
104 "SR: \t\t0x%08x\n", dw_readl(dws
, DW_SPI_SR
));
105 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
106 "IMR: \t\t0x%08x\n", dw_readl(dws
, DW_SPI_IMR
));
107 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
108 "ISR: \t\t0x%08x\n", dw_readl(dws
, DW_SPI_ISR
));
109 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
110 "DMACR: \t\t0x%08x\n", dw_readl(dws
, DW_SPI_DMACR
));
111 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
112 "DMATDLR: \t0x%08x\n", dw_readl(dws
, DW_SPI_DMATDLR
));
113 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
114 "DMARDLR: \t0x%08x\n", dw_readl(dws
, DW_SPI_DMARDLR
));
115 len
+= snprintf(buf
+ len
, SPI_REGS_BUFSIZE
- len
,
116 "=================================\n");
118 ret
= simple_read_from_buffer(user_buf
, count
, ppos
, buf
, len
);
123 static const struct file_operations mrst_spi_regs_ops
= {
124 .owner
= THIS_MODULE
,
126 .read
= spi_show_regs
,
127 .llseek
= default_llseek
,
130 static int mrst_spi_debugfs_init(struct dw_spi
*dws
)
132 dws
->debugfs
= debugfs_create_dir("mrst_spi", NULL
);
136 debugfs_create_file("registers", S_IFREG
| S_IRUGO
,
137 dws
->debugfs
, (void *)dws
, &mrst_spi_regs_ops
);
141 static void mrst_spi_debugfs_remove(struct dw_spi
*dws
)
144 debugfs_remove_recursive(dws
->debugfs
);
148 static inline int mrst_spi_debugfs_init(struct dw_spi
*dws
)
153 static inline void mrst_spi_debugfs_remove(struct dw_spi
*dws
)
156 #endif /* CONFIG_DEBUG_FS */
158 /* Return the max entries we can fill into tx fifo */
159 static inline u32
tx_max(struct dw_spi
*dws
)
161 u32 tx_left
, tx_room
, rxtx_gap
;
163 tx_left
= (dws
->tx_end
- dws
->tx
) / dws
->n_bytes
;
164 tx_room
= dws
->fifo_len
- dw_readw(dws
, DW_SPI_TXFLR
);
167 * Another concern is about the tx/rx mismatch, we
168 * though to use (dws->fifo_len - rxflr - txflr) as
169 * one maximum value for tx, but it doesn't cover the
170 * data which is out of tx/rx fifo and inside the
171 * shift registers. So a control from sw point of
174 rxtx_gap
= ((dws
->rx_end
- dws
->rx
) - (dws
->tx_end
- dws
->tx
))
177 return min3(tx_left
, tx_room
, (u32
) (dws
->fifo_len
- rxtx_gap
));
180 /* Return the max entries we should read out of rx fifo */
181 static inline u32
rx_max(struct dw_spi
*dws
)
183 u32 rx_left
= (dws
->rx_end
- dws
->rx
) / dws
->n_bytes
;
185 return min(rx_left
, (u32
)dw_readw(dws
, DW_SPI_RXFLR
));
188 static void dw_writer(struct dw_spi
*dws
)
190 u32 max
= tx_max(dws
);
194 /* Set the tx word if the transfer's original "tx" is not null */
195 if (dws
->tx_end
- dws
->len
) {
196 if (dws
->n_bytes
== 1)
197 txw
= *(u8
*)(dws
->tx
);
199 txw
= *(u16
*)(dws
->tx
);
201 dw_writew(dws
, DW_SPI_DR
, txw
);
202 dws
->tx
+= dws
->n_bytes
;
206 static void dw_reader(struct dw_spi
*dws
)
208 u32 max
= rx_max(dws
);
212 rxw
= dw_readw(dws
, DW_SPI_DR
);
213 /* Care rx only if the transfer's original "rx" is not null */
214 if (dws
->rx_end
- dws
->len
) {
215 if (dws
->n_bytes
== 1)
216 *(u8
*)(dws
->rx
) = rxw
;
218 *(u16
*)(dws
->rx
) = rxw
;
220 dws
->rx
+= dws
->n_bytes
;
224 static void *next_transfer(struct dw_spi
*dws
)
226 struct spi_message
*msg
= dws
->cur_msg
;
227 struct spi_transfer
*trans
= dws
->cur_transfer
;
229 /* Move to next transfer */
230 if (trans
->transfer_list
.next
!= &msg
->transfers
) {
232 list_entry(trans
->transfer_list
.next
,
235 return RUNNING_STATE
;
241 * Note: first step is the protocol driver prepares
242 * a dma-capable memory, and this func just need translate
243 * the virt addr to physical
245 static int map_dma_buffers(struct dw_spi
*dws
)
247 if (!dws
->cur_msg
->is_dma_mapped
249 || !dws
->cur_chip
->enable_dma
253 if (dws
->cur_transfer
->tx_dma
)
254 dws
->tx_dma
= dws
->cur_transfer
->tx_dma
;
256 if (dws
->cur_transfer
->rx_dma
)
257 dws
->rx_dma
= dws
->cur_transfer
->rx_dma
;
262 /* Caller already set message->status; dma and pio irqs are blocked */
263 static void giveback(struct dw_spi
*dws
)
265 struct spi_transfer
*last_transfer
;
267 struct spi_message
*msg
;
269 spin_lock_irqsave(&dws
->lock
, flags
);
272 dws
->cur_transfer
= NULL
;
273 dws
->prev_chip
= dws
->cur_chip
;
274 dws
->cur_chip
= NULL
;
276 queue_work(dws
->workqueue
, &dws
->pump_messages
);
277 spin_unlock_irqrestore(&dws
->lock
, flags
);
279 last_transfer
= list_entry(msg
->transfers
.prev
,
283 if (!last_transfer
->cs_change
&& dws
->cs_control
)
284 dws
->cs_control(MRST_SPI_DEASSERT
);
288 msg
->complete(msg
->context
);
291 static void int_error_stop(struct dw_spi
*dws
, const char *msg
)
294 spi_enable_chip(dws
, 0);
296 dev_err(&dws
->master
->dev
, "%s\n", msg
);
297 dws
->cur_msg
->state
= ERROR_STATE
;
298 tasklet_schedule(&dws
->pump_transfers
);
301 void dw_spi_xfer_done(struct dw_spi
*dws
)
303 /* Update total byte transferred return count actual bytes read */
304 dws
->cur_msg
->actual_length
+= dws
->len
;
306 /* Move to next transfer */
307 dws
->cur_msg
->state
= next_transfer(dws
);
309 /* Handle end of message */
310 if (dws
->cur_msg
->state
== DONE_STATE
) {
311 dws
->cur_msg
->status
= 0;
314 tasklet_schedule(&dws
->pump_transfers
);
316 EXPORT_SYMBOL_GPL(dw_spi_xfer_done
);
318 static irqreturn_t
interrupt_transfer(struct dw_spi
*dws
)
320 u16 irq_status
= dw_readw(dws
, DW_SPI_ISR
);
323 if (irq_status
& (SPI_INT_TXOI
| SPI_INT_RXOI
| SPI_INT_RXUI
)) {
324 dw_readw(dws
, DW_SPI_TXOICR
);
325 dw_readw(dws
, DW_SPI_RXOICR
);
326 dw_readw(dws
, DW_SPI_RXUICR
);
327 int_error_stop(dws
, "interrupt_transfer: fifo overrun/underrun");
332 if (dws
->rx_end
== dws
->rx
) {
333 spi_mask_intr(dws
, SPI_INT_TXEI
);
334 dw_spi_xfer_done(dws
);
337 if (irq_status
& SPI_INT_TXEI
) {
338 spi_mask_intr(dws
, SPI_INT_TXEI
);
340 /* Enable TX irq always, it will be disabled when RX finished */
341 spi_umask_intr(dws
, SPI_INT_TXEI
);
347 static irqreturn_t
dw_spi_irq(int irq
, void *dev_id
)
349 struct dw_spi
*dws
= dev_id
;
350 u16 irq_status
= dw_readw(dws
, DW_SPI_ISR
) & 0x3f;
356 spi_mask_intr(dws
, SPI_INT_TXEI
);
360 return dws
->transfer_handler(dws
);
363 /* Must be called inside pump_transfers() */
364 static void poll_transfer(struct dw_spi
*dws
)
370 } while (dws
->rx_end
> dws
->rx
);
372 dw_spi_xfer_done(dws
);
375 static void pump_transfers(unsigned long data
)
377 struct dw_spi
*dws
= (struct dw_spi
*)data
;
378 struct spi_message
*message
= NULL
;
379 struct spi_transfer
*transfer
= NULL
;
380 struct spi_transfer
*previous
= NULL
;
381 struct spi_device
*spi
= NULL
;
382 struct chip_data
*chip
= NULL
;
391 /* Get current state information */
392 message
= dws
->cur_msg
;
393 transfer
= dws
->cur_transfer
;
394 chip
= dws
->cur_chip
;
397 if (unlikely(!chip
->clk_div
))
398 chip
->clk_div
= dws
->max_freq
/ chip
->speed_hz
;
400 if (message
->state
== ERROR_STATE
) {
401 message
->status
= -EIO
;
405 /* Handle end of message */
406 if (message
->state
== DONE_STATE
) {
411 /* Delay if requested at end of transfer*/
412 if (message
->state
== RUNNING_STATE
) {
413 previous
= list_entry(transfer
->transfer_list
.prev
,
416 if (previous
->delay_usecs
)
417 udelay(previous
->delay_usecs
);
420 dws
->n_bytes
= chip
->n_bytes
;
421 dws
->dma_width
= chip
->dma_width
;
422 dws
->cs_control
= chip
->cs_control
;
424 dws
->rx_dma
= transfer
->rx_dma
;
425 dws
->tx_dma
= transfer
->tx_dma
;
426 dws
->tx
= (void *)transfer
->tx_buf
;
427 dws
->tx_end
= dws
->tx
+ transfer
->len
;
428 dws
->rx
= transfer
->rx_buf
;
429 dws
->rx_end
= dws
->rx
+ transfer
->len
;
430 dws
->len
= dws
->cur_transfer
->len
;
431 if (chip
!= dws
->prev_chip
)
436 /* Handle per transfer options for bpw and speed */
437 if (transfer
->speed_hz
) {
438 speed
= chip
->speed_hz
;
440 if (transfer
->speed_hz
!= speed
) {
441 speed
= transfer
->speed_hz
;
442 if (speed
> dws
->max_freq
) {
443 printk(KERN_ERR
"MRST SPI0: unsupported"
444 "freq: %dHz\n", speed
);
445 message
->status
= -EIO
;
449 /* clk_div doesn't support odd number */
450 clk_div
= dws
->max_freq
/ speed
;
451 clk_div
= (clk_div
+ 1) & 0xfffe;
453 chip
->speed_hz
= speed
;
454 chip
->clk_div
= clk_div
;
457 if (transfer
->bits_per_word
) {
458 bits
= transfer
->bits_per_word
;
459 dws
->n_bytes
= dws
->dma_width
= bits
>> 3;
461 | (chip
->type
<< SPI_FRF_OFFSET
)
462 | (spi
->mode
<< SPI_MODE_OFFSET
)
463 | (chip
->tmode
<< SPI_TMOD_OFFSET
);
465 message
->state
= RUNNING_STATE
;
468 * Adjust transfer mode if necessary. Requires platform dependent
469 * chipselect mechanism.
471 if (dws
->cs_control
) {
472 if (dws
->rx
&& dws
->tx
)
473 chip
->tmode
= SPI_TMOD_TR
;
475 chip
->tmode
= SPI_TMOD_RO
;
477 chip
->tmode
= SPI_TMOD_TO
;
479 cr0
&= ~SPI_TMOD_MASK
;
480 cr0
|= (chip
->tmode
<< SPI_TMOD_OFFSET
);
483 /* Check if current transfer is a DMA transaction */
484 dws
->dma_mapped
= map_dma_buffers(dws
);
488 * we only need set the TXEI IRQ, as TX/RX always happen syncronizely
490 if (!dws
->dma_mapped
&& !chip
->poll_mode
) {
491 int templen
= dws
->len
/ dws
->n_bytes
;
492 txint_level
= dws
->fifo_len
/ 2;
493 txint_level
= (templen
> txint_level
) ? txint_level
: templen
;
495 imask
|= SPI_INT_TXEI
| SPI_INT_TXOI
| SPI_INT_RXUI
| SPI_INT_RXOI
;
496 dws
->transfer_handler
= interrupt_transfer
;
500 * Reprogram registers only if
501 * 1. chip select changes
502 * 2. clk_div is changed
503 * 3. control value changes
505 if (dw_readw(dws
, DW_SPI_CTRL0
) != cr0
|| cs_change
|| clk_div
|| imask
) {
506 spi_enable_chip(dws
, 0);
508 if (dw_readw(dws
, DW_SPI_CTRL0
) != cr0
)
509 dw_writew(dws
, DW_SPI_CTRL0
, cr0
);
511 spi_set_clk(dws
, clk_div
? clk_div
: chip
->clk_div
);
512 spi_chip_sel(dws
, spi
->chip_select
);
514 /* Set the interrupt mask, for poll mode just disable all int */
515 spi_mask_intr(dws
, 0xff);
517 spi_umask_intr(dws
, imask
);
519 dw_writew(dws
, DW_SPI_TXFLTR
, txint_level
);
521 spi_enable_chip(dws
, 1);
523 dws
->prev_chip
= chip
;
527 dws
->dma_ops
->dma_transfer(dws
, cs_change
);
539 static void pump_messages(struct work_struct
*work
)
542 container_of(work
, struct dw_spi
, pump_messages
);
545 /* Lock queue and check for queue work */
546 spin_lock_irqsave(&dws
->lock
, flags
);
547 if (list_empty(&dws
->queue
) || dws
->run
== QUEUE_STOPPED
) {
549 spin_unlock_irqrestore(&dws
->lock
, flags
);
553 /* Make sure we are not already running a message */
555 spin_unlock_irqrestore(&dws
->lock
, flags
);
559 /* Extract head of queue */
560 dws
->cur_msg
= list_entry(dws
->queue
.next
, struct spi_message
, queue
);
561 list_del_init(&dws
->cur_msg
->queue
);
563 /* Initial message state*/
564 dws
->cur_msg
->state
= START_STATE
;
565 dws
->cur_transfer
= list_entry(dws
->cur_msg
->transfers
.next
,
568 dws
->cur_chip
= spi_get_ctldata(dws
->cur_msg
->spi
);
570 /* Mark as busy and launch transfers */
571 tasklet_schedule(&dws
->pump_transfers
);
574 spin_unlock_irqrestore(&dws
->lock
, flags
);
577 /* spi_device use this to queue in their spi_msg */
578 static int dw_spi_transfer(struct spi_device
*spi
, struct spi_message
*msg
)
580 struct dw_spi
*dws
= spi_master_get_devdata(spi
->master
);
583 spin_lock_irqsave(&dws
->lock
, flags
);
585 if (dws
->run
== QUEUE_STOPPED
) {
586 spin_unlock_irqrestore(&dws
->lock
, flags
);
590 msg
->actual_length
= 0;
591 msg
->status
= -EINPROGRESS
;
592 msg
->state
= START_STATE
;
594 list_add_tail(&msg
->queue
, &dws
->queue
);
596 if (dws
->run
== QUEUE_RUNNING
&& !dws
->busy
) {
598 if (dws
->cur_transfer
|| dws
->cur_msg
)
599 queue_work(dws
->workqueue
,
600 &dws
->pump_messages
);
602 /* If no other data transaction in air, just go */
603 spin_unlock_irqrestore(&dws
->lock
, flags
);
604 pump_messages(&dws
->pump_messages
);
609 spin_unlock_irqrestore(&dws
->lock
, flags
);
613 /* This may be called twice for each spi dev */
614 static int dw_spi_setup(struct spi_device
*spi
)
616 struct dw_spi_chip
*chip_info
= NULL
;
617 struct chip_data
*chip
;
619 /* Only alloc on first setup */
620 chip
= spi_get_ctldata(spi
);
622 chip
= devm_kzalloc(&spi
->dev
, sizeof(struct chip_data
),
626 spi_set_ctldata(spi
, chip
);
630 * Protocol drivers may change the chip settings, so...
631 * if chip_info exists, use it
633 chip_info
= spi
->controller_data
;
635 /* chip_info doesn't always exist */
637 if (chip_info
->cs_control
)
638 chip
->cs_control
= chip_info
->cs_control
;
640 chip
->poll_mode
= chip_info
->poll_mode
;
641 chip
->type
= chip_info
->type
;
643 chip
->rx_threshold
= 0;
644 chip
->tx_threshold
= 0;
646 chip
->enable_dma
= chip_info
->enable_dma
;
649 if (spi
->bits_per_word
== 8) {
652 } else if (spi
->bits_per_word
== 16) {
656 chip
->bits_per_word
= spi
->bits_per_word
;
658 if (!spi
->max_speed_hz
) {
659 dev_err(&spi
->dev
, "No max speed HZ parameter\n");
662 chip
->speed_hz
= spi
->max_speed_hz
;
664 chip
->tmode
= 0; /* Tx & Rx */
665 /* Default SPI mode is SCPOL = 0, SCPH = 0 */
666 chip
->cr0
= (chip
->bits_per_word
- 1)
667 | (chip
->type
<< SPI_FRF_OFFSET
)
668 | (spi
->mode
<< SPI_MODE_OFFSET
)
669 | (chip
->tmode
<< SPI_TMOD_OFFSET
);
674 static void dw_spi_cleanup(struct spi_device
*spi
)
676 struct chip_data
*chip
= spi_get_ctldata(spi
);
680 static int init_queue(struct dw_spi
*dws
)
682 INIT_LIST_HEAD(&dws
->queue
);
683 spin_lock_init(&dws
->lock
);
685 dws
->run
= QUEUE_STOPPED
;
688 tasklet_init(&dws
->pump_transfers
,
689 pump_transfers
, (unsigned long)dws
);
691 INIT_WORK(&dws
->pump_messages
, pump_messages
);
692 dws
->workqueue
= create_singlethread_workqueue(
693 dev_name(dws
->master
->dev
.parent
));
694 if (dws
->workqueue
== NULL
)
700 static int start_queue(struct dw_spi
*dws
)
704 spin_lock_irqsave(&dws
->lock
, flags
);
706 if (dws
->run
== QUEUE_RUNNING
|| dws
->busy
) {
707 spin_unlock_irqrestore(&dws
->lock
, flags
);
711 dws
->run
= QUEUE_RUNNING
;
713 dws
->cur_transfer
= NULL
;
714 dws
->cur_chip
= NULL
;
715 dws
->prev_chip
= NULL
;
716 spin_unlock_irqrestore(&dws
->lock
, flags
);
718 queue_work(dws
->workqueue
, &dws
->pump_messages
);
723 static int stop_queue(struct dw_spi
*dws
)
729 spin_lock_irqsave(&dws
->lock
, flags
);
730 dws
->run
= QUEUE_STOPPED
;
731 while ((!list_empty(&dws
->queue
) || dws
->busy
) && limit
--) {
732 spin_unlock_irqrestore(&dws
->lock
, flags
);
734 spin_lock_irqsave(&dws
->lock
, flags
);
737 if (!list_empty(&dws
->queue
) || dws
->busy
)
739 spin_unlock_irqrestore(&dws
->lock
, flags
);
744 static int destroy_queue(struct dw_spi
*dws
)
748 status
= stop_queue(dws
);
751 destroy_workqueue(dws
->workqueue
);
755 /* Restart the controller, disable all interrupts, clean rx fifo */
756 static void spi_hw_init(struct dw_spi
*dws
)
758 spi_enable_chip(dws
, 0);
759 spi_mask_intr(dws
, 0xff);
760 spi_enable_chip(dws
, 1);
763 * Try to detect the FIFO depth if not set by interface driver,
764 * the depth could be from 2 to 256 from HW spec
766 if (!dws
->fifo_len
) {
768 for (fifo
= 2; fifo
<= 257; fifo
++) {
769 dw_writew(dws
, DW_SPI_TXFLTR
, fifo
);
770 if (fifo
!= dw_readw(dws
, DW_SPI_TXFLTR
))
774 dws
->fifo_len
= (fifo
== 257) ? 0 : fifo
;
775 dw_writew(dws
, DW_SPI_TXFLTR
, 0);
779 int dw_spi_add_host(struct device
*dev
, struct dw_spi
*dws
)
781 struct spi_master
*master
;
786 master
= spi_alloc_master(dev
, 0);
790 dws
->master
= master
;
791 dws
->type
= SSI_MOTO_SPI
;
792 dws
->prev_chip
= NULL
;
794 dws
->dma_addr
= (dma_addr_t
)(dws
->paddr
+ 0x60);
795 snprintf(dws
->name
, sizeof(dws
->name
), "dw_spi%d",
798 ret
= devm_request_irq(dev
, dws
->irq
, dw_spi_irq
, IRQF_SHARED
,
801 dev_err(&master
->dev
, "can not get IRQ\n");
802 goto err_free_master
;
805 master
->mode_bits
= SPI_CPOL
| SPI_CPHA
;
806 master
->bits_per_word_mask
= SPI_BPW_MASK(8) | SPI_BPW_MASK(16);
807 master
->bus_num
= dws
->bus_num
;
808 master
->num_chipselect
= dws
->num_cs
;
809 master
->cleanup
= dw_spi_cleanup
;
810 master
->setup
= dw_spi_setup
;
811 master
->transfer
= dw_spi_transfer
;
816 if (dws
->dma_ops
&& dws
->dma_ops
->dma_init
) {
817 ret
= dws
->dma_ops
->dma_init(dws
);
819 dev_warn(&master
->dev
, "DMA init failed\n");
824 /* Initial and start queue */
825 ret
= init_queue(dws
);
827 dev_err(&master
->dev
, "problem initializing queue\n");
830 ret
= start_queue(dws
);
832 dev_err(&master
->dev
, "problem starting queue\n");
836 spi_master_set_devdata(master
, dws
);
837 ret
= devm_spi_register_master(dev
, master
);
839 dev_err(&master
->dev
, "problem registering spi master\n");
840 goto err_queue_alloc
;
843 mrst_spi_debugfs_init(dws
);
848 if (dws
->dma_ops
&& dws
->dma_ops
->dma_exit
)
849 dws
->dma_ops
->dma_exit(dws
);
851 spi_enable_chip(dws
, 0);
853 spi_master_put(master
);
856 EXPORT_SYMBOL_GPL(dw_spi_add_host
);
858 void dw_spi_remove_host(struct dw_spi
*dws
)
864 mrst_spi_debugfs_remove(dws
);
866 /* Remove the queue */
867 status
= destroy_queue(dws
);
869 dev_err(&dws
->master
->dev
,
870 "dw_spi_remove: workqueue will not complete, message memory not freed\n");
872 if (dws
->dma_ops
&& dws
->dma_ops
->dma_exit
)
873 dws
->dma_ops
->dma_exit(dws
);
874 spi_enable_chip(dws
, 0);
878 EXPORT_SYMBOL_GPL(dw_spi_remove_host
);
880 int dw_spi_suspend_host(struct dw_spi
*dws
)
884 ret
= stop_queue(dws
);
887 spi_enable_chip(dws
, 0);
891 EXPORT_SYMBOL_GPL(dw_spi_suspend_host
);
893 int dw_spi_resume_host(struct dw_spi
*dws
)
898 ret
= start_queue(dws
);
900 dev_err(&dws
->master
->dev
, "fail to start queue (%d)\n", ret
);
903 EXPORT_SYMBOL_GPL(dw_spi_resume_host
);
905 MODULE_AUTHOR("Feng Tang <feng.tang@intel.com>");
906 MODULE_DESCRIPTION("Driver for DesignWare SPI controller core");
907 MODULE_LICENSE("GPL v2");