Merge remote-tracking branches 'spi/topic/drivers', 'spi/topic/dw', 'spi/topic/efm32...
[firefly-linux-kernel-4.4.55.git] / drivers / spi / spi-tegra20-slink.c
1 /*
2  * SPI driver for Nvidia's Tegra20/Tegra30 SLINK Controller.
3  *
4  * Copyright (c) 2012, NVIDIA CORPORATION.  All rights reserved.
5  *
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.
9  *
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
13  * more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include <linux/clk.h>
20 #include <linux/completion.h>
21 #include <linux/delay.h>
22 #include <linux/dmaengine.h>
23 #include <linux/dma-mapping.h>
24 #include <linux/dmapool.h>
25 #include <linux/err.h>
26 #include <linux/init.h>
27 #include <linux/interrupt.h>
28 #include <linux/io.h>
29 #include <linux/kernel.h>
30 #include <linux/kthread.h>
31 #include <linux/module.h>
32 #include <linux/platform_device.h>
33 #include <linux/pm_runtime.h>
34 #include <linux/of.h>
35 #include <linux/of_device.h>
36 #include <linux/reset.h>
37 #include <linux/spi/spi.h>
38
39 #define SLINK_COMMAND                   0x000
40 #define SLINK_BIT_LENGTH(x)             (((x) & 0x1f) << 0)
41 #define SLINK_WORD_SIZE(x)              (((x) & 0x1f) << 5)
42 #define SLINK_BOTH_EN                   (1 << 10)
43 #define SLINK_CS_SW                     (1 << 11)
44 #define SLINK_CS_VALUE                  (1 << 12)
45 #define SLINK_CS_POLARITY               (1 << 13)
46 #define SLINK_IDLE_SDA_DRIVE_LOW        (0 << 16)
47 #define SLINK_IDLE_SDA_DRIVE_HIGH       (1 << 16)
48 #define SLINK_IDLE_SDA_PULL_LOW         (2 << 16)
49 #define SLINK_IDLE_SDA_PULL_HIGH        (3 << 16)
50 #define SLINK_IDLE_SDA_MASK             (3 << 16)
51 #define SLINK_CS_POLARITY1              (1 << 20)
52 #define SLINK_CK_SDA                    (1 << 21)
53 #define SLINK_CS_POLARITY2              (1 << 22)
54 #define SLINK_CS_POLARITY3              (1 << 23)
55 #define SLINK_IDLE_SCLK_DRIVE_LOW       (0 << 24)
56 #define SLINK_IDLE_SCLK_DRIVE_HIGH      (1 << 24)
57 #define SLINK_IDLE_SCLK_PULL_LOW        (2 << 24)
58 #define SLINK_IDLE_SCLK_PULL_HIGH       (3 << 24)
59 #define SLINK_IDLE_SCLK_MASK            (3 << 24)
60 #define SLINK_M_S                       (1 << 28)
61 #define SLINK_WAIT                      (1 << 29)
62 #define SLINK_GO                        (1 << 30)
63 #define SLINK_ENB                       (1 << 31)
64
65 #define SLINK_MODES                     (SLINK_IDLE_SCLK_MASK | SLINK_CK_SDA)
66
67 #define SLINK_COMMAND2                  0x004
68 #define SLINK_LSBFE                     (1 << 0)
69 #define SLINK_SSOE                      (1 << 1)
70 #define SLINK_SPIE                      (1 << 4)
71 #define SLINK_BIDIROE                   (1 << 6)
72 #define SLINK_MODFEN                    (1 << 7)
73 #define SLINK_INT_SIZE(x)               (((x) & 0x1f) << 8)
74 #define SLINK_CS_ACTIVE_BETWEEN         (1 << 17)
75 #define SLINK_SS_EN_CS(x)               (((x) & 0x3) << 18)
76 #define SLINK_SS_SETUP(x)               (((x) & 0x3) << 20)
77 #define SLINK_FIFO_REFILLS_0            (0 << 22)
78 #define SLINK_FIFO_REFILLS_1            (1 << 22)
79 #define SLINK_FIFO_REFILLS_2            (2 << 22)
80 #define SLINK_FIFO_REFILLS_3            (3 << 22)
81 #define SLINK_FIFO_REFILLS_MASK         (3 << 22)
82 #define SLINK_WAIT_PACK_INT(x)          (((x) & 0x7) << 26)
83 #define SLINK_SPC0                      (1 << 29)
84 #define SLINK_TXEN                      (1 << 30)
85 #define SLINK_RXEN                      (1 << 31)
86
87 #define SLINK_STATUS                    0x008
88 #define SLINK_COUNT(val)                (((val) >> 0) & 0x1f)
89 #define SLINK_WORD(val)                 (((val) >> 5) & 0x1f)
90 #define SLINK_BLK_CNT(val)              (((val) >> 0) & 0xffff)
91 #define SLINK_MODF                      (1 << 16)
92 #define SLINK_RX_UNF                    (1 << 18)
93 #define SLINK_TX_OVF                    (1 << 19)
94 #define SLINK_TX_FULL                   (1 << 20)
95 #define SLINK_TX_EMPTY                  (1 << 21)
96 #define SLINK_RX_FULL                   (1 << 22)
97 #define SLINK_RX_EMPTY                  (1 << 23)
98 #define SLINK_TX_UNF                    (1 << 24)
99 #define SLINK_RX_OVF                    (1 << 25)
100 #define SLINK_TX_FLUSH                  (1 << 26)
101 #define SLINK_RX_FLUSH                  (1 << 27)
102 #define SLINK_SCLK                      (1 << 28)
103 #define SLINK_ERR                       (1 << 29)
104 #define SLINK_RDY                       (1 << 30)
105 #define SLINK_BSY                       (1 << 31)
106 #define SLINK_FIFO_ERROR                (SLINK_TX_OVF | SLINK_RX_UNF |  \
107                                         SLINK_TX_UNF | SLINK_RX_OVF)
108
109 #define SLINK_FIFO_EMPTY                (SLINK_TX_EMPTY | SLINK_RX_EMPTY)
110
111 #define SLINK_MAS_DATA                  0x010
112 #define SLINK_SLAVE_DATA                0x014
113
114 #define SLINK_DMA_CTL                   0x018
115 #define SLINK_DMA_BLOCK_SIZE(x)         (((x) & 0xffff) << 0)
116 #define SLINK_TX_TRIG_1                 (0 << 16)
117 #define SLINK_TX_TRIG_4                 (1 << 16)
118 #define SLINK_TX_TRIG_8                 (2 << 16)
119 #define SLINK_TX_TRIG_16                (3 << 16)
120 #define SLINK_TX_TRIG_MASK              (3 << 16)
121 #define SLINK_RX_TRIG_1                 (0 << 18)
122 #define SLINK_RX_TRIG_4                 (1 << 18)
123 #define SLINK_RX_TRIG_8                 (2 << 18)
124 #define SLINK_RX_TRIG_16                (3 << 18)
125 #define SLINK_RX_TRIG_MASK              (3 << 18)
126 #define SLINK_PACKED                    (1 << 20)
127 #define SLINK_PACK_SIZE_4               (0 << 21)
128 #define SLINK_PACK_SIZE_8               (1 << 21)
129 #define SLINK_PACK_SIZE_16              (2 << 21)
130 #define SLINK_PACK_SIZE_32              (3 << 21)
131 #define SLINK_PACK_SIZE_MASK            (3 << 21)
132 #define SLINK_IE_TXC                    (1 << 26)
133 #define SLINK_IE_RXC                    (1 << 27)
134 #define SLINK_DMA_EN                    (1 << 31)
135
136 #define SLINK_STATUS2                   0x01c
137 #define SLINK_TX_FIFO_EMPTY_COUNT(val)  (((val) & 0x3f) >> 0)
138 #define SLINK_RX_FIFO_FULL_COUNT(val)   (((val) & 0x3f0000) >> 16)
139 #define SLINK_SS_HOLD_TIME(val)         (((val) & 0xF) << 6)
140
141 #define SLINK_TX_FIFO                   0x100
142 #define SLINK_RX_FIFO                   0x180
143
144 #define DATA_DIR_TX                     (1 << 0)
145 #define DATA_DIR_RX                     (1 << 1)
146
147 #define SLINK_DMA_TIMEOUT               (msecs_to_jiffies(1000))
148
149 #define DEFAULT_SPI_DMA_BUF_LEN         (16*1024)
150 #define TX_FIFO_EMPTY_COUNT_MAX         SLINK_TX_FIFO_EMPTY_COUNT(0x20)
151 #define RX_FIFO_FULL_COUNT_ZERO         SLINK_RX_FIFO_FULL_COUNT(0)
152
153 #define SLINK_STATUS2_RESET \
154         (TX_FIFO_EMPTY_COUNT_MAX | RX_FIFO_FULL_COUNT_ZERO << 16)
155
156 #define MAX_CHIP_SELECT                 4
157 #define SLINK_FIFO_DEPTH                32
158
159 struct tegra_slink_chip_data {
160         bool cs_hold_time;
161 };
162
163 struct tegra_slink_data {
164         struct device                           *dev;
165         struct spi_master                       *master;
166         const struct tegra_slink_chip_data      *chip_data;
167         spinlock_t                              lock;
168
169         struct clk                              *clk;
170         struct reset_control                    *rst;
171         void __iomem                            *base;
172         phys_addr_t                             phys;
173         unsigned                                irq;
174         u32                                     cur_speed;
175
176         struct spi_device                       *cur_spi;
177         unsigned                                cur_pos;
178         unsigned                                cur_len;
179         unsigned                                words_per_32bit;
180         unsigned                                bytes_per_word;
181         unsigned                                curr_dma_words;
182         unsigned                                cur_direction;
183
184         unsigned                                cur_rx_pos;
185         unsigned                                cur_tx_pos;
186
187         unsigned                                dma_buf_size;
188         unsigned                                max_buf_size;
189         bool                                    is_curr_dma_xfer;
190
191         struct completion                       rx_dma_complete;
192         struct completion                       tx_dma_complete;
193
194         u32                                     tx_status;
195         u32                                     rx_status;
196         u32                                     status_reg;
197         bool                                    is_packed;
198         u32                                     packed_size;
199
200         u32                                     command_reg;
201         u32                                     command2_reg;
202         u32                                     dma_control_reg;
203         u32                                     def_command_reg;
204         u32                                     def_command2_reg;
205
206         struct completion                       xfer_completion;
207         struct spi_transfer                     *curr_xfer;
208         struct dma_chan                         *rx_dma_chan;
209         u32                                     *rx_dma_buf;
210         dma_addr_t                              rx_dma_phys;
211         struct dma_async_tx_descriptor          *rx_dma_desc;
212
213         struct dma_chan                         *tx_dma_chan;
214         u32                                     *tx_dma_buf;
215         dma_addr_t                              tx_dma_phys;
216         struct dma_async_tx_descriptor          *tx_dma_desc;
217 };
218
219 static int tegra_slink_runtime_suspend(struct device *dev);
220 static int tegra_slink_runtime_resume(struct device *dev);
221
222 static inline u32 tegra_slink_readl(struct tegra_slink_data *tspi,
223                 unsigned long reg)
224 {
225         return readl(tspi->base + reg);
226 }
227
228 static inline void tegra_slink_writel(struct tegra_slink_data *tspi,
229                 u32 val, unsigned long reg)
230 {
231         writel(val, tspi->base + reg);
232
233         /* Read back register to make sure that register writes completed */
234         if (reg != SLINK_TX_FIFO)
235                 readl(tspi->base + SLINK_MAS_DATA);
236 }
237
238 static void tegra_slink_clear_status(struct tegra_slink_data *tspi)
239 {
240         u32 val_write;
241
242         tegra_slink_readl(tspi, SLINK_STATUS);
243
244         /* Write 1 to clear status register */
245         val_write = SLINK_RDY | SLINK_FIFO_ERROR;
246         tegra_slink_writel(tspi, val_write, SLINK_STATUS);
247 }
248
249 static u32 tegra_slink_get_packed_size(struct tegra_slink_data *tspi,
250                                   struct spi_transfer *t)
251 {
252         switch (tspi->bytes_per_word) {
253         case 0:
254                 return SLINK_PACK_SIZE_4;
255         case 1:
256                 return SLINK_PACK_SIZE_8;
257         case 2:
258                 return SLINK_PACK_SIZE_16;
259         case 4:
260                 return SLINK_PACK_SIZE_32;
261         default:
262                 return 0;
263         }
264 }
265
266 static unsigned tegra_slink_calculate_curr_xfer_param(
267         struct spi_device *spi, struct tegra_slink_data *tspi,
268         struct spi_transfer *t)
269 {
270         unsigned remain_len = t->len - tspi->cur_pos;
271         unsigned max_word;
272         unsigned bits_per_word;
273         unsigned max_len;
274         unsigned total_fifo_words;
275
276         bits_per_word = t->bits_per_word;
277         tspi->bytes_per_word = DIV_ROUND_UP(bits_per_word, 8);
278
279         if (bits_per_word == 8 || bits_per_word == 16) {
280                 tspi->is_packed = 1;
281                 tspi->words_per_32bit = 32/bits_per_word;
282         } else {
283                 tspi->is_packed = 0;
284                 tspi->words_per_32bit = 1;
285         }
286         tspi->packed_size = tegra_slink_get_packed_size(tspi, t);
287
288         if (tspi->is_packed) {
289                 max_len = min(remain_len, tspi->max_buf_size);
290                 tspi->curr_dma_words = max_len/tspi->bytes_per_word;
291                 total_fifo_words = max_len/4;
292         } else {
293                 max_word = (remain_len - 1) / tspi->bytes_per_word + 1;
294                 max_word = min(max_word, tspi->max_buf_size/4);
295                 tspi->curr_dma_words = max_word;
296                 total_fifo_words = max_word;
297         }
298         return total_fifo_words;
299 }
300
301 static unsigned tegra_slink_fill_tx_fifo_from_client_txbuf(
302         struct tegra_slink_data *tspi, struct spi_transfer *t)
303 {
304         unsigned nbytes;
305         unsigned tx_empty_count;
306         u32 fifo_status;
307         unsigned max_n_32bit;
308         unsigned i, count;
309         unsigned int written_words;
310         unsigned fifo_words_left;
311         u8 *tx_buf = (u8 *)t->tx_buf + tspi->cur_tx_pos;
312
313         fifo_status = tegra_slink_readl(tspi, SLINK_STATUS2);
314         tx_empty_count = SLINK_TX_FIFO_EMPTY_COUNT(fifo_status);
315
316         if (tspi->is_packed) {
317                 fifo_words_left = tx_empty_count * tspi->words_per_32bit;
318                 written_words = min(fifo_words_left, tspi->curr_dma_words);
319                 nbytes = written_words * tspi->bytes_per_word;
320                 max_n_32bit = DIV_ROUND_UP(nbytes, 4);
321                 for (count = 0; count < max_n_32bit; count++) {
322                         u32 x = 0;
323                         for (i = 0; (i < 4) && nbytes; i++, nbytes--)
324                                 x |= (u32)(*tx_buf++) << (i * 8);
325                         tegra_slink_writel(tspi, x, SLINK_TX_FIFO);
326                 }
327         } else {
328                 max_n_32bit = min(tspi->curr_dma_words,  tx_empty_count);
329                 written_words = max_n_32bit;
330                 nbytes = written_words * tspi->bytes_per_word;
331                 for (count = 0; count < max_n_32bit; count++) {
332                         u32 x = 0;
333                         for (i = 0; nbytes && (i < tspi->bytes_per_word);
334                                                         i++, nbytes--)
335                                 x |= (u32)(*tx_buf++) << (i * 8);
336                         tegra_slink_writel(tspi, x, SLINK_TX_FIFO);
337                 }
338         }
339         tspi->cur_tx_pos += written_words * tspi->bytes_per_word;
340         return written_words;
341 }
342
343 static unsigned int tegra_slink_read_rx_fifo_to_client_rxbuf(
344                 struct tegra_slink_data *tspi, struct spi_transfer *t)
345 {
346         unsigned rx_full_count;
347         u32 fifo_status;
348         unsigned i, count;
349         unsigned int read_words = 0;
350         unsigned len;
351         u8 *rx_buf = (u8 *)t->rx_buf + tspi->cur_rx_pos;
352
353         fifo_status = tegra_slink_readl(tspi, SLINK_STATUS2);
354         rx_full_count = SLINK_RX_FIFO_FULL_COUNT(fifo_status);
355         if (tspi->is_packed) {
356                 len = tspi->curr_dma_words * tspi->bytes_per_word;
357                 for (count = 0; count < rx_full_count; count++) {
358                         u32 x = tegra_slink_readl(tspi, SLINK_RX_FIFO);
359                         for (i = 0; len && (i < 4); i++, len--)
360                                 *rx_buf++ = (x >> i*8) & 0xFF;
361                 }
362                 tspi->cur_rx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
363                 read_words += tspi->curr_dma_words;
364         } else {
365                 for (count = 0; count < rx_full_count; count++) {
366                         u32 x = tegra_slink_readl(tspi, SLINK_RX_FIFO);
367                         for (i = 0; (i < tspi->bytes_per_word); i++)
368                                 *rx_buf++ = (x >> (i*8)) & 0xFF;
369                 }
370                 tspi->cur_rx_pos += rx_full_count * tspi->bytes_per_word;
371                 read_words += rx_full_count;
372         }
373         return read_words;
374 }
375
376 static void tegra_slink_copy_client_txbuf_to_spi_txbuf(
377                 struct tegra_slink_data *tspi, struct spi_transfer *t)
378 {
379         /* Make the dma buffer to read by cpu */
380         dma_sync_single_for_cpu(tspi->dev, tspi->tx_dma_phys,
381                                 tspi->dma_buf_size, DMA_TO_DEVICE);
382
383         if (tspi->is_packed) {
384                 unsigned len = tspi->curr_dma_words * tspi->bytes_per_word;
385                 memcpy(tspi->tx_dma_buf, t->tx_buf + tspi->cur_pos, len);
386         } else {
387                 unsigned int i;
388                 unsigned int count;
389                 u8 *tx_buf = (u8 *)t->tx_buf + tspi->cur_tx_pos;
390                 unsigned consume = tspi->curr_dma_words * tspi->bytes_per_word;
391
392                 for (count = 0; count < tspi->curr_dma_words; count++) {
393                         u32 x = 0;
394                         for (i = 0; consume && (i < tspi->bytes_per_word);
395                                                         i++, consume--)
396                                 x |= (u32)(*tx_buf++) << (i * 8);
397                         tspi->tx_dma_buf[count] = x;
398                 }
399         }
400         tspi->cur_tx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
401
402         /* Make the dma buffer to read by dma */
403         dma_sync_single_for_device(tspi->dev, tspi->tx_dma_phys,
404                                 tspi->dma_buf_size, DMA_TO_DEVICE);
405 }
406
407 static void tegra_slink_copy_spi_rxbuf_to_client_rxbuf(
408                 struct tegra_slink_data *tspi, struct spi_transfer *t)
409 {
410         unsigned len;
411
412         /* Make the dma buffer to read by cpu */
413         dma_sync_single_for_cpu(tspi->dev, tspi->rx_dma_phys,
414                 tspi->dma_buf_size, DMA_FROM_DEVICE);
415
416         if (tspi->is_packed) {
417                 len = tspi->curr_dma_words * tspi->bytes_per_word;
418                 memcpy(t->rx_buf + tspi->cur_rx_pos, tspi->rx_dma_buf, len);
419         } else {
420                 unsigned int i;
421                 unsigned int count;
422                 unsigned char *rx_buf = t->rx_buf + tspi->cur_rx_pos;
423                 u32 rx_mask = ((u32)1 << t->bits_per_word) - 1;
424
425                 for (count = 0; count < tspi->curr_dma_words; count++) {
426                         u32 x = tspi->rx_dma_buf[count] & rx_mask;
427                         for (i = 0; (i < tspi->bytes_per_word); i++)
428                                 *rx_buf++ = (x >> (i*8)) & 0xFF;
429                 }
430         }
431         tspi->cur_rx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
432
433         /* Make the dma buffer to read by dma */
434         dma_sync_single_for_device(tspi->dev, tspi->rx_dma_phys,
435                 tspi->dma_buf_size, DMA_FROM_DEVICE);
436 }
437
438 static void tegra_slink_dma_complete(void *args)
439 {
440         struct completion *dma_complete = args;
441
442         complete(dma_complete);
443 }
444
445 static int tegra_slink_start_tx_dma(struct tegra_slink_data *tspi, int len)
446 {
447         reinit_completion(&tspi->tx_dma_complete);
448         tspi->tx_dma_desc = dmaengine_prep_slave_single(tspi->tx_dma_chan,
449                                 tspi->tx_dma_phys, len, DMA_MEM_TO_DEV,
450                                 DMA_PREP_INTERRUPT |  DMA_CTRL_ACK);
451         if (!tspi->tx_dma_desc) {
452                 dev_err(tspi->dev, "Not able to get desc for Tx\n");
453                 return -EIO;
454         }
455
456         tspi->tx_dma_desc->callback = tegra_slink_dma_complete;
457         tspi->tx_dma_desc->callback_param = &tspi->tx_dma_complete;
458
459         dmaengine_submit(tspi->tx_dma_desc);
460         dma_async_issue_pending(tspi->tx_dma_chan);
461         return 0;
462 }
463
464 static int tegra_slink_start_rx_dma(struct tegra_slink_data *tspi, int len)
465 {
466         reinit_completion(&tspi->rx_dma_complete);
467         tspi->rx_dma_desc = dmaengine_prep_slave_single(tspi->rx_dma_chan,
468                                 tspi->rx_dma_phys, len, DMA_DEV_TO_MEM,
469                                 DMA_PREP_INTERRUPT |  DMA_CTRL_ACK);
470         if (!tspi->rx_dma_desc) {
471                 dev_err(tspi->dev, "Not able to get desc for Rx\n");
472                 return -EIO;
473         }
474
475         tspi->rx_dma_desc->callback = tegra_slink_dma_complete;
476         tspi->rx_dma_desc->callback_param = &tspi->rx_dma_complete;
477
478         dmaengine_submit(tspi->rx_dma_desc);
479         dma_async_issue_pending(tspi->rx_dma_chan);
480         return 0;
481 }
482
483 static int tegra_slink_start_dma_based_transfer(
484                 struct tegra_slink_data *tspi, struct spi_transfer *t)
485 {
486         u32 val;
487         unsigned int len;
488         int ret = 0;
489         u32 status;
490
491         /* Make sure that Rx and Tx fifo are empty */
492         status = tegra_slink_readl(tspi, SLINK_STATUS);
493         if ((status & SLINK_FIFO_EMPTY) != SLINK_FIFO_EMPTY) {
494                 dev_err(tspi->dev, "Rx/Tx fifo are not empty status 0x%08x\n",
495                         (unsigned)status);
496                 return -EIO;
497         }
498
499         val = SLINK_DMA_BLOCK_SIZE(tspi->curr_dma_words - 1);
500         val |= tspi->packed_size;
501         if (tspi->is_packed)
502                 len = DIV_ROUND_UP(tspi->curr_dma_words * tspi->bytes_per_word,
503                                         4) * 4;
504         else
505                 len = tspi->curr_dma_words * 4;
506
507         /* Set attention level based on length of transfer */
508         if (len & 0xF)
509                 val |= SLINK_TX_TRIG_1 | SLINK_RX_TRIG_1;
510         else if (((len) >> 4) & 0x1)
511                 val |= SLINK_TX_TRIG_4 | SLINK_RX_TRIG_4;
512         else
513                 val |= SLINK_TX_TRIG_8 | SLINK_RX_TRIG_8;
514
515         if (tspi->cur_direction & DATA_DIR_TX)
516                 val |= SLINK_IE_TXC;
517
518         if (tspi->cur_direction & DATA_DIR_RX)
519                 val |= SLINK_IE_RXC;
520
521         tegra_slink_writel(tspi, val, SLINK_DMA_CTL);
522         tspi->dma_control_reg = val;
523
524         if (tspi->cur_direction & DATA_DIR_TX) {
525                 tegra_slink_copy_client_txbuf_to_spi_txbuf(tspi, t);
526                 wmb();
527                 ret = tegra_slink_start_tx_dma(tspi, len);
528                 if (ret < 0) {
529                         dev_err(tspi->dev,
530                                 "Starting tx dma failed, err %d\n", ret);
531                         return ret;
532                 }
533
534                 /* Wait for tx fifo to be fill before starting slink */
535                 status = tegra_slink_readl(tspi, SLINK_STATUS);
536                 while (!(status & SLINK_TX_FULL))
537                         status = tegra_slink_readl(tspi, SLINK_STATUS);
538         }
539
540         if (tspi->cur_direction & DATA_DIR_RX) {
541                 /* Make the dma buffer to read by dma */
542                 dma_sync_single_for_device(tspi->dev, tspi->rx_dma_phys,
543                                 tspi->dma_buf_size, DMA_FROM_DEVICE);
544
545                 ret = tegra_slink_start_rx_dma(tspi, len);
546                 if (ret < 0) {
547                         dev_err(tspi->dev,
548                                 "Starting rx dma failed, err %d\n", ret);
549                         if (tspi->cur_direction & DATA_DIR_TX)
550                                 dmaengine_terminate_all(tspi->tx_dma_chan);
551                         return ret;
552                 }
553         }
554         tspi->is_curr_dma_xfer = true;
555         if (tspi->is_packed) {
556                 val |= SLINK_PACKED;
557                 tegra_slink_writel(tspi, val, SLINK_DMA_CTL);
558                 /* HW need small delay after settign Packed mode */
559                 udelay(1);
560         }
561         tspi->dma_control_reg = val;
562
563         val |= SLINK_DMA_EN;
564         tegra_slink_writel(tspi, val, SLINK_DMA_CTL);
565         return ret;
566 }
567
568 static int tegra_slink_start_cpu_based_transfer(
569                 struct tegra_slink_data *tspi, struct spi_transfer *t)
570 {
571         u32 val;
572         unsigned cur_words;
573
574         val = tspi->packed_size;
575         if (tspi->cur_direction & DATA_DIR_TX)
576                 val |= SLINK_IE_TXC;
577
578         if (tspi->cur_direction & DATA_DIR_RX)
579                 val |= SLINK_IE_RXC;
580
581         tegra_slink_writel(tspi, val, SLINK_DMA_CTL);
582         tspi->dma_control_reg = val;
583
584         if (tspi->cur_direction & DATA_DIR_TX)
585                 cur_words = tegra_slink_fill_tx_fifo_from_client_txbuf(tspi, t);
586         else
587                 cur_words = tspi->curr_dma_words;
588         val |= SLINK_DMA_BLOCK_SIZE(cur_words - 1);
589         tegra_slink_writel(tspi, val, SLINK_DMA_CTL);
590         tspi->dma_control_reg = val;
591
592         tspi->is_curr_dma_xfer = false;
593         if (tspi->is_packed) {
594                 val |= SLINK_PACKED;
595                 tegra_slink_writel(tspi, val, SLINK_DMA_CTL);
596                 udelay(1);
597                 wmb();
598         }
599         tspi->dma_control_reg = val;
600         val |= SLINK_DMA_EN;
601         tegra_slink_writel(tspi, val, SLINK_DMA_CTL);
602         return 0;
603 }
604
605 static int tegra_slink_init_dma_param(struct tegra_slink_data *tspi,
606                         bool dma_to_memory)
607 {
608         struct dma_chan *dma_chan;
609         u32 *dma_buf;
610         dma_addr_t dma_phys;
611         int ret;
612         struct dma_slave_config dma_sconfig;
613
614         dma_chan = dma_request_slave_channel_reason(tspi->dev,
615                                                 dma_to_memory ? "rx" : "tx");
616         if (IS_ERR(dma_chan)) {
617                 ret = PTR_ERR(dma_chan);
618                 if (ret != -EPROBE_DEFER)
619                         dev_err(tspi->dev,
620                                 "Dma channel is not available: %d\n", ret);
621                 return ret;
622         }
623
624         dma_buf = dma_alloc_coherent(tspi->dev, tspi->dma_buf_size,
625                                 &dma_phys, GFP_KERNEL);
626         if (!dma_buf) {
627                 dev_err(tspi->dev, " Not able to allocate the dma buffer\n");
628                 dma_release_channel(dma_chan);
629                 return -ENOMEM;
630         }
631
632         if (dma_to_memory) {
633                 dma_sconfig.src_addr = tspi->phys + SLINK_RX_FIFO;
634                 dma_sconfig.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
635                 dma_sconfig.src_maxburst = 0;
636         } else {
637                 dma_sconfig.dst_addr = tspi->phys + SLINK_TX_FIFO;
638                 dma_sconfig.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
639                 dma_sconfig.dst_maxburst = 0;
640         }
641
642         ret = dmaengine_slave_config(dma_chan, &dma_sconfig);
643         if (ret)
644                 goto scrub;
645         if (dma_to_memory) {
646                 tspi->rx_dma_chan = dma_chan;
647                 tspi->rx_dma_buf = dma_buf;
648                 tspi->rx_dma_phys = dma_phys;
649         } else {
650                 tspi->tx_dma_chan = dma_chan;
651                 tspi->tx_dma_buf = dma_buf;
652                 tspi->tx_dma_phys = dma_phys;
653         }
654         return 0;
655
656 scrub:
657         dma_free_coherent(tspi->dev, tspi->dma_buf_size, dma_buf, dma_phys);
658         dma_release_channel(dma_chan);
659         return ret;
660 }
661
662 static void tegra_slink_deinit_dma_param(struct tegra_slink_data *tspi,
663         bool dma_to_memory)
664 {
665         u32 *dma_buf;
666         dma_addr_t dma_phys;
667         struct dma_chan *dma_chan;
668
669         if (dma_to_memory) {
670                 dma_buf = tspi->rx_dma_buf;
671                 dma_chan = tspi->rx_dma_chan;
672                 dma_phys = tspi->rx_dma_phys;
673                 tspi->rx_dma_chan = NULL;
674                 tspi->rx_dma_buf = NULL;
675         } else {
676                 dma_buf = tspi->tx_dma_buf;
677                 dma_chan = tspi->tx_dma_chan;
678                 dma_phys = tspi->tx_dma_phys;
679                 tspi->tx_dma_buf = NULL;
680                 tspi->tx_dma_chan = NULL;
681         }
682         if (!dma_chan)
683                 return;
684
685         dma_free_coherent(tspi->dev, tspi->dma_buf_size, dma_buf, dma_phys);
686         dma_release_channel(dma_chan);
687 }
688
689 static int tegra_slink_start_transfer_one(struct spi_device *spi,
690                 struct spi_transfer *t)
691 {
692         struct tegra_slink_data *tspi = spi_master_get_devdata(spi->master);
693         u32 speed;
694         u8 bits_per_word;
695         unsigned total_fifo_words;
696         int ret;
697         u32 command;
698         u32 command2;
699
700         bits_per_word = t->bits_per_word;
701         speed = t->speed_hz;
702         if (speed != tspi->cur_speed) {
703                 clk_set_rate(tspi->clk, speed * 4);
704                 tspi->cur_speed = speed;
705         }
706
707         tspi->cur_spi = spi;
708         tspi->cur_pos = 0;
709         tspi->cur_rx_pos = 0;
710         tspi->cur_tx_pos = 0;
711         tspi->curr_xfer = t;
712         total_fifo_words = tegra_slink_calculate_curr_xfer_param(spi, tspi, t);
713
714         command = tspi->command_reg;
715         command &= ~SLINK_BIT_LENGTH(~0);
716         command |= SLINK_BIT_LENGTH(bits_per_word - 1);
717
718         command2 = tspi->command2_reg;
719         command2 &= ~(SLINK_RXEN | SLINK_TXEN);
720
721         tegra_slink_writel(tspi, command, SLINK_COMMAND);
722         tspi->command_reg = command;
723
724         tspi->cur_direction = 0;
725         if (t->rx_buf) {
726                 command2 |= SLINK_RXEN;
727                 tspi->cur_direction |= DATA_DIR_RX;
728         }
729         if (t->tx_buf) {
730                 command2 |= SLINK_TXEN;
731                 tspi->cur_direction |= DATA_DIR_TX;
732         }
733         tegra_slink_writel(tspi, command2, SLINK_COMMAND2);
734         tspi->command2_reg = command2;
735
736         if (total_fifo_words > SLINK_FIFO_DEPTH)
737                 ret = tegra_slink_start_dma_based_transfer(tspi, t);
738         else
739                 ret = tegra_slink_start_cpu_based_transfer(tspi, t);
740         return ret;
741 }
742
743 static int tegra_slink_setup(struct spi_device *spi)
744 {
745         static const u32 cs_pol_bit[MAX_CHIP_SELECT] = {
746                         SLINK_CS_POLARITY,
747                         SLINK_CS_POLARITY1,
748                         SLINK_CS_POLARITY2,
749                         SLINK_CS_POLARITY3,
750         };
751
752         struct tegra_slink_data *tspi = spi_master_get_devdata(spi->master);
753         u32 val;
754         unsigned long flags;
755         int ret;
756
757         dev_dbg(&spi->dev, "setup %d bpw, %scpol, %scpha, %dHz\n",
758                 spi->bits_per_word,
759                 spi->mode & SPI_CPOL ? "" : "~",
760                 spi->mode & SPI_CPHA ? "" : "~",
761                 spi->max_speed_hz);
762
763         ret = pm_runtime_get_sync(tspi->dev);
764         if (ret < 0) {
765                 dev_err(tspi->dev, "pm runtime failed, e = %d\n", ret);
766                 return ret;
767         }
768
769         spin_lock_irqsave(&tspi->lock, flags);
770         val = tspi->def_command_reg;
771         if (spi->mode & SPI_CS_HIGH)
772                 val |= cs_pol_bit[spi->chip_select];
773         else
774                 val &= ~cs_pol_bit[spi->chip_select];
775         tspi->def_command_reg = val;
776         tegra_slink_writel(tspi, tspi->def_command_reg, SLINK_COMMAND);
777         spin_unlock_irqrestore(&tspi->lock, flags);
778
779         pm_runtime_put(tspi->dev);
780         return 0;
781 }
782
783 static int tegra_slink_prepare_message(struct spi_master *master,
784                                        struct spi_message *msg)
785 {
786         struct tegra_slink_data *tspi = spi_master_get_devdata(master);
787         struct spi_device *spi = msg->spi;
788
789         tegra_slink_clear_status(tspi);
790
791         tspi->command_reg = tspi->def_command_reg;
792         tspi->command_reg |= SLINK_CS_SW | SLINK_CS_VALUE;
793
794         tspi->command2_reg = tspi->def_command2_reg;
795         tspi->command2_reg |= SLINK_SS_EN_CS(spi->chip_select);
796
797         tspi->command_reg &= ~SLINK_MODES;
798         if (spi->mode & SPI_CPHA)
799                 tspi->command_reg |= SLINK_CK_SDA;
800
801         if (spi->mode & SPI_CPOL)
802                 tspi->command_reg |= SLINK_IDLE_SCLK_DRIVE_HIGH;
803         else
804                 tspi->command_reg |= SLINK_IDLE_SCLK_DRIVE_LOW;
805
806         return 0;
807 }
808
809 static int tegra_slink_transfer_one(struct spi_master *master,
810                                     struct spi_device *spi,
811                                     struct spi_transfer *xfer)
812 {
813         struct tegra_slink_data *tspi = spi_master_get_devdata(master);
814         int ret;
815
816         reinit_completion(&tspi->xfer_completion);
817         ret = tegra_slink_start_transfer_one(spi, xfer);
818         if (ret < 0) {
819                 dev_err(tspi->dev,
820                         "spi can not start transfer, err %d\n", ret);
821                 return ret;
822         }
823
824         ret = wait_for_completion_timeout(&tspi->xfer_completion,
825                                           SLINK_DMA_TIMEOUT);
826         if (WARN_ON(ret == 0)) {
827                 dev_err(tspi->dev,
828                         "spi trasfer timeout, err %d\n", ret);
829                 return -EIO;
830         }
831
832         if (tspi->tx_status)
833                 return tspi->tx_status;
834         if (tspi->rx_status)
835                 return tspi->rx_status;
836
837         return 0;
838 }
839
840 static int tegra_slink_unprepare_message(struct spi_master *master,
841                                          struct spi_message *msg)
842 {
843         struct tegra_slink_data *tspi = spi_master_get_devdata(master);
844
845         tegra_slink_writel(tspi, tspi->def_command_reg, SLINK_COMMAND);
846         tegra_slink_writel(tspi, tspi->def_command2_reg, SLINK_COMMAND2);
847
848         return 0;
849 }
850
851 static irqreturn_t handle_cpu_based_xfer(struct tegra_slink_data *tspi)
852 {
853         struct spi_transfer *t = tspi->curr_xfer;
854         unsigned long flags;
855
856         spin_lock_irqsave(&tspi->lock, flags);
857         if (tspi->tx_status ||  tspi->rx_status ||
858                                 (tspi->status_reg & SLINK_BSY)) {
859                 dev_err(tspi->dev,
860                         "CpuXfer ERROR bit set 0x%x\n", tspi->status_reg);
861                 dev_err(tspi->dev,
862                         "CpuXfer 0x%08x:0x%08x:0x%08x\n", tspi->command_reg,
863                                 tspi->command2_reg, tspi->dma_control_reg);
864                 reset_control_assert(tspi->rst);
865                 udelay(2);
866                 reset_control_deassert(tspi->rst);
867                 complete(&tspi->xfer_completion);
868                 goto exit;
869         }
870
871         if (tspi->cur_direction & DATA_DIR_RX)
872                 tegra_slink_read_rx_fifo_to_client_rxbuf(tspi, t);
873
874         if (tspi->cur_direction & DATA_DIR_TX)
875                 tspi->cur_pos = tspi->cur_tx_pos;
876         else
877                 tspi->cur_pos = tspi->cur_rx_pos;
878
879         if (tspi->cur_pos == t->len) {
880                 complete(&tspi->xfer_completion);
881                 goto exit;
882         }
883
884         tegra_slink_calculate_curr_xfer_param(tspi->cur_spi, tspi, t);
885         tegra_slink_start_cpu_based_transfer(tspi, t);
886 exit:
887         spin_unlock_irqrestore(&tspi->lock, flags);
888         return IRQ_HANDLED;
889 }
890
891 static irqreturn_t handle_dma_based_xfer(struct tegra_slink_data *tspi)
892 {
893         struct spi_transfer *t = tspi->curr_xfer;
894         long wait_status;
895         int err = 0;
896         unsigned total_fifo_words;
897         unsigned long flags;
898
899         /* Abort dmas if any error */
900         if (tspi->cur_direction & DATA_DIR_TX) {
901                 if (tspi->tx_status) {
902                         dmaengine_terminate_all(tspi->tx_dma_chan);
903                         err += 1;
904                 } else {
905                         wait_status = wait_for_completion_interruptible_timeout(
906                                 &tspi->tx_dma_complete, SLINK_DMA_TIMEOUT);
907                         if (wait_status <= 0) {
908                                 dmaengine_terminate_all(tspi->tx_dma_chan);
909                                 dev_err(tspi->dev, "TxDma Xfer failed\n");
910                                 err += 1;
911                         }
912                 }
913         }
914
915         if (tspi->cur_direction & DATA_DIR_RX) {
916                 if (tspi->rx_status) {
917                         dmaengine_terminate_all(tspi->rx_dma_chan);
918                         err += 2;
919                 } else {
920                         wait_status = wait_for_completion_interruptible_timeout(
921                                 &tspi->rx_dma_complete, SLINK_DMA_TIMEOUT);
922                         if (wait_status <= 0) {
923                                 dmaengine_terminate_all(tspi->rx_dma_chan);
924                                 dev_err(tspi->dev, "RxDma Xfer failed\n");
925                                 err += 2;
926                         }
927                 }
928         }
929
930         spin_lock_irqsave(&tspi->lock, flags);
931         if (err) {
932                 dev_err(tspi->dev,
933                         "DmaXfer: ERROR bit set 0x%x\n", tspi->status_reg);
934                 dev_err(tspi->dev,
935                         "DmaXfer 0x%08x:0x%08x:0x%08x\n", tspi->command_reg,
936                                 tspi->command2_reg, tspi->dma_control_reg);
937                 reset_control_assert(tspi->rst);
938                 udelay(2);
939                 reset_control_assert(tspi->rst);
940                 complete(&tspi->xfer_completion);
941                 spin_unlock_irqrestore(&tspi->lock, flags);
942                 return IRQ_HANDLED;
943         }
944
945         if (tspi->cur_direction & DATA_DIR_RX)
946                 tegra_slink_copy_spi_rxbuf_to_client_rxbuf(tspi, t);
947
948         if (tspi->cur_direction & DATA_DIR_TX)
949                 tspi->cur_pos = tspi->cur_tx_pos;
950         else
951                 tspi->cur_pos = tspi->cur_rx_pos;
952
953         if (tspi->cur_pos == t->len) {
954                 complete(&tspi->xfer_completion);
955                 goto exit;
956         }
957
958         /* Continue transfer in current message */
959         total_fifo_words = tegra_slink_calculate_curr_xfer_param(tspi->cur_spi,
960                                                         tspi, t);
961         if (total_fifo_words > SLINK_FIFO_DEPTH)
962                 err = tegra_slink_start_dma_based_transfer(tspi, t);
963         else
964                 err = tegra_slink_start_cpu_based_transfer(tspi, t);
965
966 exit:
967         spin_unlock_irqrestore(&tspi->lock, flags);
968         return IRQ_HANDLED;
969 }
970
971 static irqreturn_t tegra_slink_isr_thread(int irq, void *context_data)
972 {
973         struct tegra_slink_data *tspi = context_data;
974
975         if (!tspi->is_curr_dma_xfer)
976                 return handle_cpu_based_xfer(tspi);
977         return handle_dma_based_xfer(tspi);
978 }
979
980 static irqreturn_t tegra_slink_isr(int irq, void *context_data)
981 {
982         struct tegra_slink_data *tspi = context_data;
983
984         tspi->status_reg = tegra_slink_readl(tspi, SLINK_STATUS);
985         if (tspi->cur_direction & DATA_DIR_TX)
986                 tspi->tx_status = tspi->status_reg &
987                                         (SLINK_TX_OVF | SLINK_TX_UNF);
988
989         if (tspi->cur_direction & DATA_DIR_RX)
990                 tspi->rx_status = tspi->status_reg &
991                                         (SLINK_RX_OVF | SLINK_RX_UNF);
992         tegra_slink_clear_status(tspi);
993
994         return IRQ_WAKE_THREAD;
995 }
996
997 static const struct tegra_slink_chip_data tegra30_spi_cdata = {
998         .cs_hold_time = true,
999 };
1000
1001 static const struct tegra_slink_chip_data tegra20_spi_cdata = {
1002         .cs_hold_time = false,
1003 };
1004
1005 static struct of_device_id tegra_slink_of_match[] = {
1006         { .compatible = "nvidia,tegra30-slink", .data = &tegra30_spi_cdata, },
1007         { .compatible = "nvidia,tegra20-slink", .data = &tegra20_spi_cdata, },
1008         {}
1009 };
1010 MODULE_DEVICE_TABLE(of, tegra_slink_of_match);
1011
1012 static int tegra_slink_probe(struct platform_device *pdev)
1013 {
1014         struct spi_master       *master;
1015         struct tegra_slink_data *tspi;
1016         struct resource         *r;
1017         int ret, spi_irq;
1018         const struct tegra_slink_chip_data *cdata = NULL;
1019         const struct of_device_id *match;
1020
1021         match = of_match_device(tegra_slink_of_match, &pdev->dev);
1022         if (!match) {
1023                 dev_err(&pdev->dev, "Error: No device match found\n");
1024                 return -ENODEV;
1025         }
1026         cdata = match->data;
1027
1028         master = spi_alloc_master(&pdev->dev, sizeof(*tspi));
1029         if (!master) {
1030                 dev_err(&pdev->dev, "master allocation failed\n");
1031                 return -ENOMEM;
1032         }
1033
1034         /* the spi->mode bits understood by this driver: */
1035         master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH;
1036         master->setup = tegra_slink_setup;
1037         master->prepare_message = tegra_slink_prepare_message;
1038         master->transfer_one = tegra_slink_transfer_one;
1039         master->unprepare_message = tegra_slink_unprepare_message;
1040         master->auto_runtime_pm = true;
1041         master->num_chipselect = MAX_CHIP_SELECT;
1042
1043         platform_set_drvdata(pdev, master);
1044         tspi = spi_master_get_devdata(master);
1045         tspi->master = master;
1046         tspi->dev = &pdev->dev;
1047         tspi->chip_data = cdata;
1048         spin_lock_init(&tspi->lock);
1049
1050         if (of_property_read_u32(tspi->dev->of_node, "spi-max-frequency",
1051                                  &master->max_speed_hz))
1052                 master->max_speed_hz = 25000000; /* 25MHz */
1053
1054         r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1055         if (!r) {
1056                 dev_err(&pdev->dev, "No IO memory resource\n");
1057                 ret = -ENODEV;
1058                 goto exit_free_master;
1059         }
1060         tspi->phys = r->start;
1061         tspi->base = devm_ioremap_resource(&pdev->dev, r);
1062         if (IS_ERR(tspi->base)) {
1063                 ret = PTR_ERR(tspi->base);
1064                 goto exit_free_master;
1065         }
1066
1067         spi_irq = platform_get_irq(pdev, 0);
1068         tspi->irq = spi_irq;
1069         ret = request_threaded_irq(tspi->irq, tegra_slink_isr,
1070                         tegra_slink_isr_thread, IRQF_ONESHOT,
1071                         dev_name(&pdev->dev), tspi);
1072         if (ret < 0) {
1073                 dev_err(&pdev->dev, "Failed to register ISR for IRQ %d\n",
1074                                         tspi->irq);
1075                 goto exit_free_master;
1076         }
1077
1078         tspi->clk = devm_clk_get(&pdev->dev, NULL);
1079         if (IS_ERR(tspi->clk)) {
1080                 dev_err(&pdev->dev, "can not get clock\n");
1081                 ret = PTR_ERR(tspi->clk);
1082                 goto exit_free_irq;
1083         }
1084
1085         tspi->rst = devm_reset_control_get(&pdev->dev, "spi");
1086         if (IS_ERR(tspi->rst)) {
1087                 dev_err(&pdev->dev, "can not get reset\n");
1088                 ret = PTR_ERR(tspi->rst);
1089                 goto exit_free_irq;
1090         }
1091
1092         tspi->max_buf_size = SLINK_FIFO_DEPTH << 2;
1093         tspi->dma_buf_size = DEFAULT_SPI_DMA_BUF_LEN;
1094
1095         ret = tegra_slink_init_dma_param(tspi, true);
1096         if (ret < 0)
1097                 goto exit_free_irq;
1098         ret = tegra_slink_init_dma_param(tspi, false);
1099         if (ret < 0)
1100                 goto exit_rx_dma_free;
1101         tspi->max_buf_size = tspi->dma_buf_size;
1102         init_completion(&tspi->tx_dma_complete);
1103         init_completion(&tspi->rx_dma_complete);
1104
1105         init_completion(&tspi->xfer_completion);
1106
1107         pm_runtime_enable(&pdev->dev);
1108         if (!pm_runtime_enabled(&pdev->dev)) {
1109                 ret = tegra_slink_runtime_resume(&pdev->dev);
1110                 if (ret)
1111                         goto exit_pm_disable;
1112         }
1113
1114         ret = pm_runtime_get_sync(&pdev->dev);
1115         if (ret < 0) {
1116                 dev_err(&pdev->dev, "pm runtime get failed, e = %d\n", ret);
1117                 goto exit_pm_disable;
1118         }
1119         tspi->def_command_reg  = SLINK_M_S;
1120         tspi->def_command2_reg = SLINK_CS_ACTIVE_BETWEEN;
1121         tegra_slink_writel(tspi, tspi->def_command_reg, SLINK_COMMAND);
1122         tegra_slink_writel(tspi, tspi->def_command2_reg, SLINK_COMMAND2);
1123         pm_runtime_put(&pdev->dev);
1124
1125         master->dev.of_node = pdev->dev.of_node;
1126         ret = devm_spi_register_master(&pdev->dev, master);
1127         if (ret < 0) {
1128                 dev_err(&pdev->dev, "can not register to master err %d\n", ret);
1129                 goto exit_pm_disable;
1130         }
1131         return ret;
1132
1133 exit_pm_disable:
1134         pm_runtime_disable(&pdev->dev);
1135         if (!pm_runtime_status_suspended(&pdev->dev))
1136                 tegra_slink_runtime_suspend(&pdev->dev);
1137         tegra_slink_deinit_dma_param(tspi, false);
1138 exit_rx_dma_free:
1139         tegra_slink_deinit_dma_param(tspi, true);
1140 exit_free_irq:
1141         free_irq(spi_irq, tspi);
1142 exit_free_master:
1143         spi_master_put(master);
1144         return ret;
1145 }
1146
1147 static int tegra_slink_remove(struct platform_device *pdev)
1148 {
1149         struct spi_master *master = platform_get_drvdata(pdev);
1150         struct tegra_slink_data *tspi = spi_master_get_devdata(master);
1151
1152         free_irq(tspi->irq, tspi);
1153
1154         if (tspi->tx_dma_chan)
1155                 tegra_slink_deinit_dma_param(tspi, false);
1156
1157         if (tspi->rx_dma_chan)
1158                 tegra_slink_deinit_dma_param(tspi, true);
1159
1160         pm_runtime_disable(&pdev->dev);
1161         if (!pm_runtime_status_suspended(&pdev->dev))
1162                 tegra_slink_runtime_suspend(&pdev->dev);
1163
1164         return 0;
1165 }
1166
1167 #ifdef CONFIG_PM_SLEEP
1168 static int tegra_slink_suspend(struct device *dev)
1169 {
1170         struct spi_master *master = dev_get_drvdata(dev);
1171
1172         return spi_master_suspend(master);
1173 }
1174
1175 static int tegra_slink_resume(struct device *dev)
1176 {
1177         struct spi_master *master = dev_get_drvdata(dev);
1178         struct tegra_slink_data *tspi = spi_master_get_devdata(master);
1179         int ret;
1180
1181         ret = pm_runtime_get_sync(dev);
1182         if (ret < 0) {
1183                 dev_err(dev, "pm runtime failed, e = %d\n", ret);
1184                 return ret;
1185         }
1186         tegra_slink_writel(tspi, tspi->command_reg, SLINK_COMMAND);
1187         tegra_slink_writel(tspi, tspi->command2_reg, SLINK_COMMAND2);
1188         pm_runtime_put(dev);
1189
1190         return spi_master_resume(master);
1191 }
1192 #endif
1193
1194 static int tegra_slink_runtime_suspend(struct device *dev)
1195 {
1196         struct spi_master *master = dev_get_drvdata(dev);
1197         struct tegra_slink_data *tspi = spi_master_get_devdata(master);
1198
1199         /* Flush all write which are in PPSB queue by reading back */
1200         tegra_slink_readl(tspi, SLINK_MAS_DATA);
1201
1202         clk_disable_unprepare(tspi->clk);
1203         return 0;
1204 }
1205
1206 static int tegra_slink_runtime_resume(struct device *dev)
1207 {
1208         struct spi_master *master = dev_get_drvdata(dev);
1209         struct tegra_slink_data *tspi = spi_master_get_devdata(master);
1210         int ret;
1211
1212         ret = clk_prepare_enable(tspi->clk);
1213         if (ret < 0) {
1214                 dev_err(tspi->dev, "clk_prepare failed: %d\n", ret);
1215                 return ret;
1216         }
1217         return 0;
1218 }
1219
1220 static const struct dev_pm_ops slink_pm_ops = {
1221         SET_RUNTIME_PM_OPS(tegra_slink_runtime_suspend,
1222                 tegra_slink_runtime_resume, NULL)
1223         SET_SYSTEM_SLEEP_PM_OPS(tegra_slink_suspend, tegra_slink_resume)
1224 };
1225 static struct platform_driver tegra_slink_driver = {
1226         .driver = {
1227                 .name           = "spi-tegra-slink",
1228                 .owner          = THIS_MODULE,
1229                 .pm             = &slink_pm_ops,
1230                 .of_match_table = tegra_slink_of_match,
1231         },
1232         .probe =        tegra_slink_probe,
1233         .remove =       tegra_slink_remove,
1234 };
1235 module_platform_driver(tegra_slink_driver);
1236
1237 MODULE_ALIAS("platform:spi-tegra-slink");
1238 MODULE_DESCRIPTION("NVIDIA Tegra20/Tegra30 SLINK Controller Driver");
1239 MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
1240 MODULE_LICENSE("GPL v2");