blob: c2ebf1ae632daadf048d84e6e0aec6e8fca1007b [file] [log] [blame]
Laxman Dewanganf333a332013-02-22 18:07:39 +05301/*
2 * SPI driver for NVIDIA's Tegra114 SPI Controller.
3 *
4 * Copyright (c) 2013, 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>
Laxman Dewanganf333a332013-02-22 18:07:39 +053020#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>
Laxman Dewanganf333a332013-02-22 18:07:39 +053026#include <linux/interrupt.h>
27#include <linux/io.h>
28#include <linux/kernel.h>
29#include <linux/kthread.h>
30#include <linux/module.h>
31#include <linux/platform_device.h>
32#include <linux/pm_runtime.h>
33#include <linux/of.h>
34#include <linux/of_device.h>
Stephen Warrenff2251e2013-11-06 16:31:24 -070035#include <linux/reset.h>
Laxman Dewanganf333a332013-02-22 18:07:39 +053036#include <linux/spi/spi.h>
37
38#define SPI_COMMAND1 0x000
39#define SPI_BIT_LENGTH(x) (((x) & 0x1f) << 0)
40#define SPI_PACKED (1 << 5)
41#define SPI_TX_EN (1 << 11)
42#define SPI_RX_EN (1 << 12)
43#define SPI_BOTH_EN_BYTE (1 << 13)
44#define SPI_BOTH_EN_BIT (1 << 14)
45#define SPI_LSBYTE_FE (1 << 15)
46#define SPI_LSBIT_FE (1 << 16)
47#define SPI_BIDIROE (1 << 17)
48#define SPI_IDLE_SDA_DRIVE_LOW (0 << 18)
49#define SPI_IDLE_SDA_DRIVE_HIGH (1 << 18)
50#define SPI_IDLE_SDA_PULL_LOW (2 << 18)
51#define SPI_IDLE_SDA_PULL_HIGH (3 << 18)
52#define SPI_IDLE_SDA_MASK (3 << 18)
Ralf Ramsauer979a9af2017-10-05 13:22:36 +020053#define SPI_CS_SW_VAL (1 << 20)
Laxman Dewanganf333a332013-02-22 18:07:39 +053054#define SPI_CS_SW_HW (1 << 21)
55/* SPI_CS_POL_INACTIVE bits are default high */
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +010056 /* n from 0 to 3 */
57#define SPI_CS_POL_INACTIVE(n) (1 << (22 + (n)))
Laxman Dewanganf333a332013-02-22 18:07:39 +053058#define SPI_CS_POL_INACTIVE_MASK (0xF << 22)
59
60#define SPI_CS_SEL_0 (0 << 26)
61#define SPI_CS_SEL_1 (1 << 26)
62#define SPI_CS_SEL_2 (2 << 26)
63#define SPI_CS_SEL_3 (3 << 26)
64#define SPI_CS_SEL_MASK (3 << 26)
65#define SPI_CS_SEL(x) (((x) & 0x3) << 26)
66#define SPI_CONTROL_MODE_0 (0 << 28)
67#define SPI_CONTROL_MODE_1 (1 << 28)
68#define SPI_CONTROL_MODE_2 (2 << 28)
69#define SPI_CONTROL_MODE_3 (3 << 28)
70#define SPI_CONTROL_MODE_MASK (3 << 28)
71#define SPI_MODE_SEL(x) (((x) & 0x3) << 28)
72#define SPI_M_S (1 << 30)
73#define SPI_PIO (1 << 31)
74
75#define SPI_COMMAND2 0x004
76#define SPI_TX_TAP_DELAY(x) (((x) & 0x3F) << 6)
77#define SPI_RX_TAP_DELAY(x) (((x) & 0x3F) << 0)
78
79#define SPI_CS_TIMING1 0x008
80#define SPI_SETUP_HOLD(setup, hold) (((setup) << 4) | (hold))
81#define SPI_CS_SETUP_HOLD(reg, cs, val) \
82 ((((val) & 0xFFu) << ((cs) * 8)) | \
83 ((reg) & ~(0xFFu << ((cs) * 8))))
84
85#define SPI_CS_TIMING2 0x00C
86#define CYCLES_BETWEEN_PACKETS_0(x) (((x) & 0x1F) << 0)
87#define CS_ACTIVE_BETWEEN_PACKETS_0 (1 << 5)
88#define CYCLES_BETWEEN_PACKETS_1(x) (((x) & 0x1F) << 8)
89#define CS_ACTIVE_BETWEEN_PACKETS_1 (1 << 13)
90#define CYCLES_BETWEEN_PACKETS_2(x) (((x) & 0x1F) << 16)
91#define CS_ACTIVE_BETWEEN_PACKETS_2 (1 << 21)
92#define CYCLES_BETWEEN_PACKETS_3(x) (((x) & 0x1F) << 24)
93#define CS_ACTIVE_BETWEEN_PACKETS_3 (1 << 29)
94#define SPI_SET_CS_ACTIVE_BETWEEN_PACKETS(reg, cs, val) \
95 (reg = (((val) & 0x1) << ((cs) * 8 + 5)) | \
96 ((reg) & ~(1 << ((cs) * 8 + 5))))
97#define SPI_SET_CYCLES_BETWEEN_PACKETS(reg, cs, val) \
98 (reg = (((val) & 0xF) << ((cs) * 8)) | \
99 ((reg) & ~(0xF << ((cs) * 8))))
100
101#define SPI_TRANS_STATUS 0x010
102#define SPI_BLK_CNT(val) (((val) >> 0) & 0xFFFF)
103#define SPI_SLV_IDLE_COUNT(val) (((val) >> 16) & 0xFF)
104#define SPI_RDY (1 << 30)
105
106#define SPI_FIFO_STATUS 0x014
107#define SPI_RX_FIFO_EMPTY (1 << 0)
108#define SPI_RX_FIFO_FULL (1 << 1)
109#define SPI_TX_FIFO_EMPTY (1 << 2)
110#define SPI_TX_FIFO_FULL (1 << 3)
111#define SPI_RX_FIFO_UNF (1 << 4)
112#define SPI_RX_FIFO_OVF (1 << 5)
113#define SPI_TX_FIFO_UNF (1 << 6)
114#define SPI_TX_FIFO_OVF (1 << 7)
115#define SPI_ERR (1 << 8)
116#define SPI_TX_FIFO_FLUSH (1 << 14)
117#define SPI_RX_FIFO_FLUSH (1 << 15)
118#define SPI_TX_FIFO_EMPTY_COUNT(val) (((val) >> 16) & 0x7F)
119#define SPI_RX_FIFO_FULL_COUNT(val) (((val) >> 23) & 0x7F)
120#define SPI_FRAME_END (1 << 30)
121#define SPI_CS_INACTIVE (1 << 31)
122
123#define SPI_FIFO_ERROR (SPI_RX_FIFO_UNF | \
124 SPI_RX_FIFO_OVF | SPI_TX_FIFO_UNF | SPI_TX_FIFO_OVF)
125#define SPI_FIFO_EMPTY (SPI_RX_FIFO_EMPTY | SPI_TX_FIFO_EMPTY)
126
127#define SPI_TX_DATA 0x018
128#define SPI_RX_DATA 0x01C
129
130#define SPI_DMA_CTL 0x020
131#define SPI_TX_TRIG_1 (0 << 15)
132#define SPI_TX_TRIG_4 (1 << 15)
133#define SPI_TX_TRIG_8 (2 << 15)
134#define SPI_TX_TRIG_16 (3 << 15)
135#define SPI_TX_TRIG_MASK (3 << 15)
136#define SPI_RX_TRIG_1 (0 << 19)
137#define SPI_RX_TRIG_4 (1 << 19)
138#define SPI_RX_TRIG_8 (2 << 19)
139#define SPI_RX_TRIG_16 (3 << 19)
140#define SPI_RX_TRIG_MASK (3 << 19)
141#define SPI_IE_TX (1 << 28)
142#define SPI_IE_RX (1 << 29)
143#define SPI_CONT (1 << 30)
144#define SPI_DMA (1 << 31)
145#define SPI_DMA_EN SPI_DMA
146
147#define SPI_DMA_BLK 0x024
148#define SPI_DMA_BLK_SET(x) (((x) & 0xFFFF) << 0)
149
150#define SPI_TX_FIFO 0x108
151#define SPI_RX_FIFO 0x188
152#define MAX_CHIP_SELECT 4
153#define SPI_FIFO_DEPTH 64
154#define DATA_DIR_TX (1 << 0)
155#define DATA_DIR_RX (1 << 1)
156
157#define SPI_DMA_TIMEOUT (msecs_to_jiffies(1000))
158#define DEFAULT_SPI_DMA_BUF_LEN (16*1024)
159#define TX_FIFO_EMPTY_COUNT_MAX SPI_TX_FIFO_EMPTY_COUNT(0x40)
160#define RX_FIFO_FULL_COUNT_ZERO SPI_RX_FIFO_FULL_COUNT(0)
161#define MAX_HOLD_CYCLES 16
162#define SPI_DEFAULT_SPEED 25000000
163
Laxman Dewanganf333a332013-02-22 18:07:39 +0530164struct tegra_spi_data {
165 struct device *dev;
166 struct spi_master *master;
167 spinlock_t lock;
168
169 struct clk *clk;
Stephen Warrenff2251e2013-11-06 16:31:24 -0700170 struct reset_control *rst;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530171 void __iomem *base;
172 phys_addr_t phys;
173 unsigned irq;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530174 u32 cur_speed;
175
176 struct spi_device *cur_spi;
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400177 struct spi_device *cs_control;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530178 unsigned cur_pos;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530179 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;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530198
199 u32 command1_reg;
200 u32 dma_control_reg;
201 u32 def_command1_reg;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530202
203 struct completion xfer_completion;
204 struct spi_transfer *curr_xfer;
205 struct dma_chan *rx_dma_chan;
206 u32 *rx_dma_buf;
207 dma_addr_t rx_dma_phys;
208 struct dma_async_tx_descriptor *rx_dma_desc;
209
210 struct dma_chan *tx_dma_chan;
211 u32 *tx_dma_buf;
212 dma_addr_t tx_dma_phys;
213 struct dma_async_tx_descriptor *tx_dma_desc;
214};
215
216static int tegra_spi_runtime_suspend(struct device *dev);
217static int tegra_spi_runtime_resume(struct device *dev);
218
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100219static inline u32 tegra_spi_readl(struct tegra_spi_data *tspi,
Laxman Dewanganf333a332013-02-22 18:07:39 +0530220 unsigned long reg)
221{
222 return readl(tspi->base + reg);
223}
224
225static inline void tegra_spi_writel(struct tegra_spi_data *tspi,
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100226 u32 val, unsigned long reg)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530227{
228 writel(val, tspi->base + reg);
229
230 /* Read back register to make sure that register writes completed */
231 if (reg != SPI_TX_FIFO)
232 readl(tspi->base + SPI_COMMAND1);
233}
234
235static void tegra_spi_clear_status(struct tegra_spi_data *tspi)
236{
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100237 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530238
239 /* Write 1 to clear status register */
240 val = tegra_spi_readl(tspi, SPI_TRANS_STATUS);
241 tegra_spi_writel(tspi, val, SPI_TRANS_STATUS);
242
243 /* Clear fifo status error if any */
244 val = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
245 if (val & SPI_ERR)
246 tegra_spi_writel(tspi, SPI_ERR | SPI_FIFO_ERROR,
247 SPI_FIFO_STATUS);
248}
249
250static unsigned tegra_spi_calculate_curr_xfer_param(
251 struct spi_device *spi, struct tegra_spi_data *tspi,
252 struct spi_transfer *t)
253{
254 unsigned remain_len = t->len - tspi->cur_pos;
255 unsigned max_word;
256 unsigned bits_per_word = t->bits_per_word;
257 unsigned max_len;
258 unsigned total_fifo_words;
259
Axel Line91d2352013-08-30 11:00:23 +0800260 tspi->bytes_per_word = DIV_ROUND_UP(bits_per_word, 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530261
Sowjanya Komatinenifc9ba6e2019-03-26 22:56:25 -0700262 if (bits_per_word == 8 || bits_per_word == 16 || bits_per_word == 32) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530263 tspi->is_packed = 1;
264 tspi->words_per_32bit = 32/bits_per_word;
265 } else {
266 tspi->is_packed = 0;
267 tspi->words_per_32bit = 1;
268 }
269
270 if (tspi->is_packed) {
271 max_len = min(remain_len, tspi->max_buf_size);
272 tspi->curr_dma_words = max_len/tspi->bytes_per_word;
273 total_fifo_words = (max_len + 3) / 4;
274 } else {
275 max_word = (remain_len - 1) / tspi->bytes_per_word + 1;
276 max_word = min(max_word, tspi->max_buf_size/4);
277 tspi->curr_dma_words = max_word;
278 total_fifo_words = max_word;
279 }
280 return total_fifo_words;
281}
282
283static unsigned tegra_spi_fill_tx_fifo_from_client_txbuf(
284 struct tegra_spi_data *tspi, struct spi_transfer *t)
285{
286 unsigned nbytes;
287 unsigned tx_empty_count;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100288 u32 fifo_status;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530289 unsigned max_n_32bit;
290 unsigned i, count;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530291 unsigned int written_words;
292 unsigned fifo_words_left;
293 u8 *tx_buf = (u8 *)t->tx_buf + tspi->cur_tx_pos;
294
295 fifo_status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
296 tx_empty_count = SPI_TX_FIFO_EMPTY_COUNT(fifo_status);
297
298 if (tspi->is_packed) {
299 fifo_words_left = tx_empty_count * tspi->words_per_32bit;
300 written_words = min(fifo_words_left, tspi->curr_dma_words);
301 nbytes = written_words * tspi->bytes_per_word;
302 max_n_32bit = DIV_ROUND_UP(nbytes, 4);
303 for (count = 0; count < max_n_32bit; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100304 u32 x = 0;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900305
Laxman Dewanganf333a332013-02-22 18:07:39 +0530306 for (i = 0; (i < 4) && nbytes; i++, nbytes--)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100307 x |= (u32)(*tx_buf++) << (i * 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530308 tegra_spi_writel(tspi, x, SPI_TX_FIFO);
309 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700310
311 tspi->cur_tx_pos += written_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530312 } else {
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700313 unsigned int write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530314 max_n_32bit = min(tspi->curr_dma_words, tx_empty_count);
315 written_words = max_n_32bit;
316 nbytes = written_words * tspi->bytes_per_word;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700317 if (nbytes > t->len - tspi->cur_pos)
318 nbytes = t->len - tspi->cur_pos;
319 write_bytes = nbytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530320 for (count = 0; count < max_n_32bit; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100321 u32 x = 0;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900322
Laxman Dewanganf333a332013-02-22 18:07:39 +0530323 for (i = 0; nbytes && (i < tspi->bytes_per_word);
324 i++, nbytes--)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100325 x |= (u32)(*tx_buf++) << (i * 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530326 tegra_spi_writel(tspi, x, SPI_TX_FIFO);
327 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700328
329 tspi->cur_tx_pos += write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530330 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700331
Laxman Dewanganf333a332013-02-22 18:07:39 +0530332 return written_words;
333}
334
335static unsigned int tegra_spi_read_rx_fifo_to_client_rxbuf(
336 struct tegra_spi_data *tspi, struct spi_transfer *t)
337{
338 unsigned rx_full_count;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100339 u32 fifo_status;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530340 unsigned i, count;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530341 unsigned int read_words = 0;
342 unsigned len;
343 u8 *rx_buf = (u8 *)t->rx_buf + tspi->cur_rx_pos;
344
345 fifo_status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
346 rx_full_count = SPI_RX_FIFO_FULL_COUNT(fifo_status);
347 if (tspi->is_packed) {
348 len = tspi->curr_dma_words * tspi->bytes_per_word;
349 for (count = 0; count < rx_full_count; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100350 u32 x = tegra_spi_readl(tspi, SPI_RX_FIFO);
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900351
Laxman Dewanganf333a332013-02-22 18:07:39 +0530352 for (i = 0; len && (i < 4); i++, len--)
353 *rx_buf++ = (x >> i*8) & 0xFF;
354 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530355 read_words += tspi->curr_dma_words;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700356 tspi->cur_rx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530357 } else {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100358 u32 rx_mask = ((u32)1 << t->bits_per_word) - 1;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700359 u8 bytes_per_word = tspi->bytes_per_word;
360 unsigned int read_bytes;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900361
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700362 len = rx_full_count * bytes_per_word;
363 if (len > t->len - tspi->cur_pos)
364 len = t->len - tspi->cur_pos;
365 read_bytes = len;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530366 for (count = 0; count < rx_full_count; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100367 u32 x = tegra_spi_readl(tspi, SPI_RX_FIFO) & rx_mask;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900368
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700369 for (i = 0; len && (i < bytes_per_word); i++, len--)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530370 *rx_buf++ = (x >> (i*8)) & 0xFF;
371 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530372 read_words += rx_full_count;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700373 tspi->cur_rx_pos += read_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530374 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700375
Laxman Dewanganf333a332013-02-22 18:07:39 +0530376 return read_words;
377}
378
379static void tegra_spi_copy_client_txbuf_to_spi_txbuf(
380 struct tegra_spi_data *tspi, struct spi_transfer *t)
381{
Laxman Dewanganf333a332013-02-22 18:07:39 +0530382 /* Make the dma buffer to read by cpu */
383 dma_sync_single_for_cpu(tspi->dev, tspi->tx_dma_phys,
384 tspi->dma_buf_size, DMA_TO_DEVICE);
385
386 if (tspi->is_packed) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100387 unsigned len = tspi->curr_dma_words * tspi->bytes_per_word;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900388
Laxman Dewanganf333a332013-02-22 18:07:39 +0530389 memcpy(tspi->tx_dma_buf, t->tx_buf + tspi->cur_pos, len);
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700390 tspi->cur_tx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530391 } else {
392 unsigned int i;
393 unsigned int count;
394 u8 *tx_buf = (u8 *)t->tx_buf + tspi->cur_tx_pos;
395 unsigned consume = tspi->curr_dma_words * tspi->bytes_per_word;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700396 unsigned int write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530397
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700398 if (consume > t->len - tspi->cur_pos)
399 consume = t->len - tspi->cur_pos;
400 write_bytes = consume;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530401 for (count = 0; count < tspi->curr_dma_words; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100402 u32 x = 0;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900403
Laxman Dewanganf333a332013-02-22 18:07:39 +0530404 for (i = 0; consume && (i < tspi->bytes_per_word);
405 i++, consume--)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100406 x |= (u32)(*tx_buf++) << (i * 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530407 tspi->tx_dma_buf[count] = x;
408 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700409
410 tspi->cur_tx_pos += write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530411 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530412
413 /* Make the dma buffer to read by dma */
414 dma_sync_single_for_device(tspi->dev, tspi->tx_dma_phys,
415 tspi->dma_buf_size, DMA_TO_DEVICE);
416}
417
418static void tegra_spi_copy_spi_rxbuf_to_client_rxbuf(
419 struct tegra_spi_data *tspi, struct spi_transfer *t)
420{
Laxman Dewanganf333a332013-02-22 18:07:39 +0530421 /* Make the dma buffer to read by cpu */
422 dma_sync_single_for_cpu(tspi->dev, tspi->rx_dma_phys,
423 tspi->dma_buf_size, DMA_FROM_DEVICE);
424
425 if (tspi->is_packed) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100426 unsigned len = tspi->curr_dma_words * tspi->bytes_per_word;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900427
Laxman Dewanganf333a332013-02-22 18:07:39 +0530428 memcpy(t->rx_buf + tspi->cur_rx_pos, tspi->rx_dma_buf, len);
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700429 tspi->cur_rx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530430 } else {
431 unsigned int i;
432 unsigned int count;
433 unsigned char *rx_buf = t->rx_buf + tspi->cur_rx_pos;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100434 u32 rx_mask = ((u32)1 << t->bits_per_word) - 1;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700435 unsigned consume = tspi->curr_dma_words * tspi->bytes_per_word;
436 unsigned int read_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530437
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700438 if (consume > t->len - tspi->cur_pos)
439 consume = t->len - tspi->cur_pos;
440 read_bytes = consume;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530441 for (count = 0; count < tspi->curr_dma_words; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100442 u32 x = tspi->rx_dma_buf[count] & rx_mask;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900443
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700444 for (i = 0; consume && (i < tspi->bytes_per_word);
445 i++, consume--)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530446 *rx_buf++ = (x >> (i*8)) & 0xFF;
447 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700448
449 tspi->cur_rx_pos += read_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530450 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530451
452 /* Make the dma buffer to read by dma */
453 dma_sync_single_for_device(tspi->dev, tspi->rx_dma_phys,
454 tspi->dma_buf_size, DMA_FROM_DEVICE);
455}
456
457static void tegra_spi_dma_complete(void *args)
458{
459 struct completion *dma_complete = args;
460
461 complete(dma_complete);
462}
463
464static int tegra_spi_start_tx_dma(struct tegra_spi_data *tspi, int len)
465{
Wolfram Sang16735d02013-11-14 14:32:02 -0800466 reinit_completion(&tspi->tx_dma_complete);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530467 tspi->tx_dma_desc = dmaengine_prep_slave_single(tspi->tx_dma_chan,
468 tspi->tx_dma_phys, len, DMA_MEM_TO_DEV,
469 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
470 if (!tspi->tx_dma_desc) {
471 dev_err(tspi->dev, "Not able to get desc for Tx\n");
472 return -EIO;
473 }
474
475 tspi->tx_dma_desc->callback = tegra_spi_dma_complete;
476 tspi->tx_dma_desc->callback_param = &tspi->tx_dma_complete;
477
478 dmaengine_submit(tspi->tx_dma_desc);
479 dma_async_issue_pending(tspi->tx_dma_chan);
480 return 0;
481}
482
483static int tegra_spi_start_rx_dma(struct tegra_spi_data *tspi, int len)
484{
Wolfram Sang16735d02013-11-14 14:32:02 -0800485 reinit_completion(&tspi->rx_dma_complete);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530486 tspi->rx_dma_desc = dmaengine_prep_slave_single(tspi->rx_dma_chan,
487 tspi->rx_dma_phys, len, DMA_DEV_TO_MEM,
488 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
489 if (!tspi->rx_dma_desc) {
490 dev_err(tspi->dev, "Not able to get desc for Rx\n");
491 return -EIO;
492 }
493
494 tspi->rx_dma_desc->callback = tegra_spi_dma_complete;
495 tspi->rx_dma_desc->callback_param = &tspi->rx_dma_complete;
496
497 dmaengine_submit(tspi->rx_dma_desc);
498 dma_async_issue_pending(tspi->rx_dma_chan);
499 return 0;
500}
501
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -0700502static int tegra_spi_flush_fifos(struct tegra_spi_data *tspi)
503{
504 unsigned long timeout = jiffies + HZ;
505 u32 status;
506
507 status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
508 if ((status & SPI_FIFO_EMPTY) != SPI_FIFO_EMPTY) {
509 status |= SPI_RX_FIFO_FLUSH | SPI_TX_FIFO_FLUSH;
510 tegra_spi_writel(tspi, status, SPI_FIFO_STATUS);
511 while ((status & SPI_FIFO_EMPTY) != SPI_FIFO_EMPTY) {
512 status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
513 if (time_after(jiffies, timeout)) {
514 dev_err(tspi->dev,
515 "timeout waiting for fifo flush\n");
516 return -EIO;
517 }
518
519 udelay(1);
520 }
521 }
522
523 return 0;
524}
525
Laxman Dewanganf333a332013-02-22 18:07:39 +0530526static int tegra_spi_start_dma_based_transfer(
527 struct tegra_spi_data *tspi, struct spi_transfer *t)
528{
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100529 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530530 unsigned int len;
531 int ret = 0;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700532 u8 dma_burst;
533 struct dma_slave_config dma_sconfig = {0};
Laxman Dewanganf333a332013-02-22 18:07:39 +0530534
535 val = SPI_DMA_BLK_SET(tspi->curr_dma_words - 1);
536 tegra_spi_writel(tspi, val, SPI_DMA_BLK);
537
538 if (tspi->is_packed)
539 len = DIV_ROUND_UP(tspi->curr_dma_words * tspi->bytes_per_word,
540 4) * 4;
541 else
542 len = tspi->curr_dma_words * 4;
543
544 /* Set attention level based on length of transfer */
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700545 if (len & 0xF) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530546 val |= SPI_TX_TRIG_1 | SPI_RX_TRIG_1;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700547 dma_burst = 1;
548 } else if (((len) >> 4) & 0x1) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530549 val |= SPI_TX_TRIG_4 | SPI_RX_TRIG_4;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700550 dma_burst = 4;
551 } else {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530552 val |= SPI_TX_TRIG_8 | SPI_RX_TRIG_8;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700553 dma_burst = 8;
554 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530555
556 if (tspi->cur_direction & DATA_DIR_TX)
557 val |= SPI_IE_TX;
558
559 if (tspi->cur_direction & DATA_DIR_RX)
560 val |= SPI_IE_RX;
561
562 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
563 tspi->dma_control_reg = val;
564
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700565 dma_sconfig.device_fc = true;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530566 if (tspi->cur_direction & DATA_DIR_TX) {
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700567 dma_sconfig.dst_addr = tspi->phys + SPI_TX_FIFO;
568 dma_sconfig.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
569 dma_sconfig.dst_maxburst = dma_burst;
570 ret = dmaengine_slave_config(tspi->tx_dma_chan, &dma_sconfig);
571 if (ret < 0) {
572 dev_err(tspi->dev,
573 "DMA slave config failed: %d\n", ret);
574 return ret;
575 }
576
Laxman Dewanganf333a332013-02-22 18:07:39 +0530577 tegra_spi_copy_client_txbuf_to_spi_txbuf(tspi, t);
578 ret = tegra_spi_start_tx_dma(tspi, len);
579 if (ret < 0) {
580 dev_err(tspi->dev,
581 "Starting tx dma failed, err %d\n", ret);
582 return ret;
583 }
584 }
585
586 if (tspi->cur_direction & DATA_DIR_RX) {
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700587 dma_sconfig.src_addr = tspi->phys + SPI_RX_FIFO;
588 dma_sconfig.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
589 dma_sconfig.src_maxburst = dma_burst;
590 ret = dmaengine_slave_config(tspi->rx_dma_chan, &dma_sconfig);
591 if (ret < 0) {
592 dev_err(tspi->dev,
593 "DMA slave config failed: %d\n", ret);
594 return ret;
595 }
596
Laxman Dewanganf333a332013-02-22 18:07:39 +0530597 /* Make the dma buffer to read by dma */
598 dma_sync_single_for_device(tspi->dev, tspi->rx_dma_phys,
599 tspi->dma_buf_size, DMA_FROM_DEVICE);
600
601 ret = tegra_spi_start_rx_dma(tspi, len);
602 if (ret < 0) {
603 dev_err(tspi->dev,
604 "Starting rx dma failed, err %d\n", ret);
605 if (tspi->cur_direction & DATA_DIR_TX)
606 dmaengine_terminate_all(tspi->tx_dma_chan);
607 return ret;
608 }
609 }
610 tspi->is_curr_dma_xfer = true;
611 tspi->dma_control_reg = val;
612
613 val |= SPI_DMA_EN;
614 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
615 return ret;
616}
617
618static int tegra_spi_start_cpu_based_transfer(
619 struct tegra_spi_data *tspi, struct spi_transfer *t)
620{
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100621 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530622 unsigned cur_words;
623
624 if (tspi->cur_direction & DATA_DIR_TX)
625 cur_words = tegra_spi_fill_tx_fifo_from_client_txbuf(tspi, t);
626 else
627 cur_words = tspi->curr_dma_words;
628
629 val = SPI_DMA_BLK_SET(cur_words - 1);
630 tegra_spi_writel(tspi, val, SPI_DMA_BLK);
631
632 val = 0;
633 if (tspi->cur_direction & DATA_DIR_TX)
634 val |= SPI_IE_TX;
635
636 if (tspi->cur_direction & DATA_DIR_RX)
637 val |= SPI_IE_RX;
638
639 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
640 tspi->dma_control_reg = val;
641
642 tspi->is_curr_dma_xfer = false;
643
644 val |= SPI_DMA_EN;
645 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
646 return 0;
647}
648
649static int tegra_spi_init_dma_param(struct tegra_spi_data *tspi,
650 bool dma_to_memory)
651{
652 struct dma_chan *dma_chan;
653 u32 *dma_buf;
654 dma_addr_t dma_phys;
655 int ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530656
Stephen Warrena915d152013-11-11 13:13:47 -0700657 dma_chan = dma_request_slave_channel_reason(tspi->dev,
658 dma_to_memory ? "rx" : "tx");
659 if (IS_ERR(dma_chan)) {
660 ret = PTR_ERR(dma_chan);
661 if (ret != -EPROBE_DEFER)
662 dev_err(tspi->dev,
663 "Dma channel is not available: %d\n", ret);
664 return ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530665 }
666
667 dma_buf = dma_alloc_coherent(tspi->dev, tspi->dma_buf_size,
668 &dma_phys, GFP_KERNEL);
669 if (!dma_buf) {
670 dev_err(tspi->dev, " Not able to allocate the dma buffer\n");
671 dma_release_channel(dma_chan);
672 return -ENOMEM;
673 }
674
Laxman Dewanganf333a332013-02-22 18:07:39 +0530675 if (dma_to_memory) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530676 tspi->rx_dma_chan = dma_chan;
677 tspi->rx_dma_buf = dma_buf;
678 tspi->rx_dma_phys = dma_phys;
679 } else {
680 tspi->tx_dma_chan = dma_chan;
681 tspi->tx_dma_buf = dma_buf;
682 tspi->tx_dma_phys = dma_phys;
683 }
684 return 0;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530685}
686
687static void tegra_spi_deinit_dma_param(struct tegra_spi_data *tspi,
688 bool dma_to_memory)
689{
690 u32 *dma_buf;
691 dma_addr_t dma_phys;
692 struct dma_chan *dma_chan;
693
694 if (dma_to_memory) {
695 dma_buf = tspi->rx_dma_buf;
696 dma_chan = tspi->rx_dma_chan;
697 dma_phys = tspi->rx_dma_phys;
698 tspi->rx_dma_chan = NULL;
699 tspi->rx_dma_buf = NULL;
700 } else {
701 dma_buf = tspi->tx_dma_buf;
702 dma_chan = tspi->tx_dma_chan;
703 dma_phys = tspi->tx_dma_phys;
704 tspi->tx_dma_buf = NULL;
705 tspi->tx_dma_chan = NULL;
706 }
707 if (!dma_chan)
708 return;
709
710 dma_free_coherent(tspi->dev, tspi->dma_buf_size, dma_buf, dma_phys);
711 dma_release_channel(dma_chan);
712}
713
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100714static u32 tegra_spi_setup_transfer_one(struct spi_device *spi,
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400715 struct spi_transfer *t, bool is_first_of_msg)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530716{
717 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
718 u32 speed = t->speed_hz;
719 u8 bits_per_word = t->bits_per_word;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100720 u32 command1;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530721 int req_mode;
722
723 if (speed != tspi->cur_speed) {
724 clk_set_rate(tspi->clk, speed);
725 tspi->cur_speed = speed;
726 }
727
728 tspi->cur_spi = spi;
729 tspi->cur_pos = 0;
730 tspi->cur_rx_pos = 0;
731 tspi->cur_tx_pos = 0;
732 tspi->curr_xfer = t;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530733
734 if (is_first_of_msg) {
735 tegra_spi_clear_status(tspi);
736
737 command1 = tspi->def_command1_reg;
738 command1 |= SPI_BIT_LENGTH(bits_per_word - 1);
739
740 command1 &= ~SPI_CONTROL_MODE_MASK;
741 req_mode = spi->mode & 0x3;
742 if (req_mode == SPI_MODE_0)
743 command1 |= SPI_CONTROL_MODE_0;
744 else if (req_mode == SPI_MODE_1)
745 command1 |= SPI_CONTROL_MODE_1;
746 else if (req_mode == SPI_MODE_2)
747 command1 |= SPI_CONTROL_MODE_2;
748 else if (req_mode == SPI_MODE_3)
749 command1 |= SPI_CONTROL_MODE_3;
750
Sowjanya Komatineni2b17a3c2019-03-26 22:56:33 -0700751 if (spi->mode & SPI_LSB_FIRST)
752 command1 |= SPI_LSBIT_FE;
753 else
754 command1 &= ~SPI_LSBIT_FE;
755
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400756 if (tspi->cs_control) {
757 if (tspi->cs_control != spi)
758 tegra_spi_writel(tspi, command1, SPI_COMMAND1);
759 tspi->cs_control = NULL;
760 } else
761 tegra_spi_writel(tspi, command1, SPI_COMMAND1);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530762
763 command1 |= SPI_CS_SW_HW;
764 if (spi->mode & SPI_CS_HIGH)
Ralf Ramsauer979a9af2017-10-05 13:22:36 +0200765 command1 |= SPI_CS_SW_VAL;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530766 else
Ralf Ramsauer979a9af2017-10-05 13:22:36 +0200767 command1 &= ~SPI_CS_SW_VAL;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530768
769 tegra_spi_writel(tspi, 0, SPI_COMMAND2);
770 } else {
771 command1 = tspi->command1_reg;
772 command1 &= ~SPI_BIT_LENGTH(~0);
773 command1 |= SPI_BIT_LENGTH(bits_per_word - 1);
774 }
775
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400776 return command1;
777}
778
779static int tegra_spi_start_transfer_one(struct spi_device *spi,
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100780 struct spi_transfer *t, u32 command1)
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400781{
782 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
783 unsigned total_fifo_words;
784 int ret;
785
786 total_fifo_words = tegra_spi_calculate_curr_xfer_param(spi, tspi, t);
787
Laxman Dewanganf333a332013-02-22 18:07:39 +0530788 if (tspi->is_packed)
789 command1 |= SPI_PACKED;
Sowjanya Komatineni7b3d10c2019-03-26 22:56:23 -0700790 else
791 command1 &= ~SPI_PACKED;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530792
793 command1 &= ~(SPI_CS_SEL_MASK | SPI_TX_EN | SPI_RX_EN);
794 tspi->cur_direction = 0;
795 if (t->rx_buf) {
796 command1 |= SPI_RX_EN;
797 tspi->cur_direction |= DATA_DIR_RX;
798 }
799 if (t->tx_buf) {
800 command1 |= SPI_TX_EN;
801 tspi->cur_direction |= DATA_DIR_TX;
802 }
803 command1 |= SPI_CS_SEL(spi->chip_select);
804 tegra_spi_writel(tspi, command1, SPI_COMMAND1);
805 tspi->command1_reg = command1;
806
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100807 dev_dbg(tspi->dev, "The def 0x%x and written 0x%x\n",
808 tspi->def_command1_reg, (unsigned)command1);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530809
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -0700810 ret = tegra_spi_flush_fifos(tspi);
811 if (ret < 0)
812 return ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530813 if (total_fifo_words > SPI_FIFO_DEPTH)
814 ret = tegra_spi_start_dma_based_transfer(tspi, t);
815 else
816 ret = tegra_spi_start_cpu_based_transfer(tspi, t);
817 return ret;
818}
819
820static int tegra_spi_setup(struct spi_device *spi)
821{
822 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100823 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530824 unsigned long flags;
825 int ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530826
827 dev_dbg(&spi->dev, "setup %d bpw, %scpol, %scpha, %dHz\n",
828 spi->bits_per_word,
829 spi->mode & SPI_CPOL ? "" : "~",
830 spi->mode & SPI_CPHA ? "" : "~",
831 spi->max_speed_hz);
832
Laxman Dewanganf333a332013-02-22 18:07:39 +0530833 ret = pm_runtime_get_sync(tspi->dev);
834 if (ret < 0) {
835 dev_err(tspi->dev, "pm runtime failed, e = %d\n", ret);
836 return ret;
837 }
838
839 spin_lock_irqsave(&tspi->lock, flags);
840 val = tspi->def_command1_reg;
841 if (spi->mode & SPI_CS_HIGH)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100842 val &= ~SPI_CS_POL_INACTIVE(spi->chip_select);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530843 else
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100844 val |= SPI_CS_POL_INACTIVE(spi->chip_select);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530845 tspi->def_command1_reg = val;
846 tegra_spi_writel(tspi, tspi->def_command1_reg, SPI_COMMAND1);
847 spin_unlock_irqrestore(&tspi->lock, flags);
848
849 pm_runtime_put(tspi->dev);
850 return 0;
851}
852
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400853static void tegra_spi_transfer_delay(int delay)
854{
855 if (!delay)
856 return;
857
858 if (delay >= 1000)
859 mdelay(delay / 1000);
860
861 udelay(delay % 1000);
862}
863
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -0700864static void tegra_spi_transfer_end(struct spi_device *spi)
865{
866 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
867 int cs_val = (spi->mode & SPI_CS_HIGH) ? 0 : 1;
868
869 if (cs_val)
870 tspi->command1_reg |= SPI_CS_SW_VAL;
871 else
872 tspi->command1_reg &= ~SPI_CS_SW_VAL;
873 tegra_spi_writel(tspi, tspi->command1_reg, SPI_COMMAND1);
874 tegra_spi_writel(tspi, tspi->def_command1_reg, SPI_COMMAND1);
875}
876
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -0700877static void tegra_spi_dump_regs(struct tegra_spi_data *tspi)
878{
879 dev_dbg(tspi->dev, "============ SPI REGISTER DUMP ============\n");
880 dev_dbg(tspi->dev, "Command1: 0x%08x | Command2: 0x%08x\n",
881 tegra_spi_readl(tspi, SPI_COMMAND1),
882 tegra_spi_readl(tspi, SPI_COMMAND2));
883 dev_dbg(tspi->dev, "DMA_CTL: 0x%08x | DMA_BLK: 0x%08x\n",
884 tegra_spi_readl(tspi, SPI_DMA_CTL),
885 tegra_spi_readl(tspi, SPI_DMA_BLK));
886 dev_dbg(tspi->dev, "TRANS_STAT: 0x%08x | FIFO_STATUS: 0x%08x\n",
887 tegra_spi_readl(tspi, SPI_TRANS_STATUS),
888 tegra_spi_readl(tspi, SPI_FIFO_STATUS));
889}
890
Laxman Dewanganf333a332013-02-22 18:07:39 +0530891static int tegra_spi_transfer_one_message(struct spi_master *master,
892 struct spi_message *msg)
893{
894 bool is_first_msg = true;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530895 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
896 struct spi_transfer *xfer;
897 struct spi_device *spi = msg->spi;
898 int ret;
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400899 bool skip = false;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530900
901 msg->status = 0;
902 msg->actual_length = 0;
903
Laxman Dewanganf333a332013-02-22 18:07:39 +0530904 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100905 u32 cmd1;
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400906
Wolfram Sang16735d02013-11-14 14:32:02 -0800907 reinit_completion(&tspi->xfer_completion);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400908
909 cmd1 = tegra_spi_setup_transfer_one(spi, xfer, is_first_msg);
910
911 if (!xfer->len) {
912 ret = 0;
913 skip = true;
914 goto complete_xfer;
915 }
916
917 ret = tegra_spi_start_transfer_one(spi, xfer, cmd1);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530918 if (ret < 0) {
919 dev_err(tspi->dev,
920 "spi can not start transfer, err %d\n", ret);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400921 goto complete_xfer;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530922 }
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400923
Laxman Dewanganf333a332013-02-22 18:07:39 +0530924 is_first_msg = false;
925 ret = wait_for_completion_timeout(&tspi->xfer_completion,
926 SPI_DMA_TIMEOUT);
927 if (WARN_ON(ret == 0)) {
928 dev_err(tspi->dev,
Colin Ian Kingbfca7612017-04-23 18:14:36 +0100929 "spi transfer timeout, err %d\n", ret);
Sowjanya Komatineni32bd1a92019-03-26 22:56:27 -0700930 if (tspi->is_curr_dma_xfer &&
931 (tspi->cur_direction & DATA_DIR_TX))
932 dmaengine_terminate_all(tspi->tx_dma_chan);
933 if (tspi->is_curr_dma_xfer &&
934 (tspi->cur_direction & DATA_DIR_RX))
935 dmaengine_terminate_all(tspi->rx_dma_chan);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530936 ret = -EIO;
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -0700937 tegra_spi_dump_regs(tspi);
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -0700938 tegra_spi_flush_fifos(tspi);
Sowjanya Komatineni32bd1a92019-03-26 22:56:27 -0700939 reset_control_assert(tspi->rst);
940 udelay(2);
941 reset_control_deassert(tspi->rst);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400942 goto complete_xfer;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530943 }
944
945 if (tspi->tx_status || tspi->rx_status) {
946 dev_err(tspi->dev, "Error in Transfer\n");
947 ret = -EIO;
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -0700948 tegra_spi_dump_regs(tspi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400949 goto complete_xfer;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530950 }
951 msg->actual_length += xfer->len;
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400952
953complete_xfer:
954 if (ret < 0 || skip) {
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -0700955 tegra_spi_transfer_end(spi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400956 tegra_spi_transfer_delay(xfer->delay_usecs);
957 goto exit;
Axel Lin971e9082014-01-15 14:07:04 +0800958 } else if (list_is_last(&xfer->transfer_list,
959 &msg->transfers)) {
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400960 if (xfer->cs_change)
961 tspi->cs_control = spi;
962 else {
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -0700963 tegra_spi_transfer_end(spi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400964 tegra_spi_transfer_delay(xfer->delay_usecs);
965 }
966 } else if (xfer->cs_change) {
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -0700967 tegra_spi_transfer_end(spi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400968 tegra_spi_transfer_delay(xfer->delay_usecs);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530969 }
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400970
Laxman Dewanganf333a332013-02-22 18:07:39 +0530971 }
972 ret = 0;
973exit:
Laxman Dewanganf333a332013-02-22 18:07:39 +0530974 msg->status = ret;
975 spi_finalize_current_message(master);
976 return ret;
977}
978
979static irqreturn_t handle_cpu_based_xfer(struct tegra_spi_data *tspi)
980{
981 struct spi_transfer *t = tspi->curr_xfer;
982 unsigned long flags;
983
984 spin_lock_irqsave(&tspi->lock, flags);
985 if (tspi->tx_status || tspi->rx_status) {
986 dev_err(tspi->dev, "CpuXfer ERROR bit set 0x%x\n",
987 tspi->status_reg);
988 dev_err(tspi->dev, "CpuXfer 0x%08x:0x%08x\n",
989 tspi->command1_reg, tspi->dma_control_reg);
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -0700990 tegra_spi_dump_regs(tspi);
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -0700991 tegra_spi_flush_fifos(tspi);
Sowjanya Komatinenia0265252019-04-04 17:14:03 -0700992 complete(&tspi->xfer_completion);
993 spin_unlock_irqrestore(&tspi->lock, flags);
Stephen Warrenff2251e2013-11-06 16:31:24 -0700994 reset_control_assert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530995 udelay(2);
Stephen Warrenff2251e2013-11-06 16:31:24 -0700996 reset_control_deassert(tspi->rst);
Sowjanya Komatinenia0265252019-04-04 17:14:03 -0700997 return IRQ_HANDLED;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530998 }
999
1000 if (tspi->cur_direction & DATA_DIR_RX)
1001 tegra_spi_read_rx_fifo_to_client_rxbuf(tspi, t);
1002
1003 if (tspi->cur_direction & DATA_DIR_TX)
1004 tspi->cur_pos = tspi->cur_tx_pos;
1005 else
1006 tspi->cur_pos = tspi->cur_rx_pos;
1007
1008 if (tspi->cur_pos == t->len) {
1009 complete(&tspi->xfer_completion);
1010 goto exit;
1011 }
1012
1013 tegra_spi_calculate_curr_xfer_param(tspi->cur_spi, tspi, t);
1014 tegra_spi_start_cpu_based_transfer(tspi, t);
1015exit:
1016 spin_unlock_irqrestore(&tspi->lock, flags);
1017 return IRQ_HANDLED;
1018}
1019
1020static irqreturn_t handle_dma_based_xfer(struct tegra_spi_data *tspi)
1021{
1022 struct spi_transfer *t = tspi->curr_xfer;
1023 long wait_status;
1024 int err = 0;
1025 unsigned total_fifo_words;
1026 unsigned long flags;
1027
1028 /* Abort dmas if any error */
1029 if (tspi->cur_direction & DATA_DIR_TX) {
1030 if (tspi->tx_status) {
1031 dmaengine_terminate_all(tspi->tx_dma_chan);
1032 err += 1;
1033 } else {
1034 wait_status = wait_for_completion_interruptible_timeout(
1035 &tspi->tx_dma_complete, SPI_DMA_TIMEOUT);
1036 if (wait_status <= 0) {
1037 dmaengine_terminate_all(tspi->tx_dma_chan);
1038 dev_err(tspi->dev, "TxDma Xfer failed\n");
1039 err += 1;
1040 }
1041 }
1042 }
1043
1044 if (tspi->cur_direction & DATA_DIR_RX) {
1045 if (tspi->rx_status) {
1046 dmaengine_terminate_all(tspi->rx_dma_chan);
1047 err += 2;
1048 } else {
1049 wait_status = wait_for_completion_interruptible_timeout(
1050 &tspi->rx_dma_complete, SPI_DMA_TIMEOUT);
1051 if (wait_status <= 0) {
1052 dmaengine_terminate_all(tspi->rx_dma_chan);
1053 dev_err(tspi->dev, "RxDma Xfer failed\n");
1054 err += 2;
1055 }
1056 }
1057 }
1058
1059 spin_lock_irqsave(&tspi->lock, flags);
1060 if (err) {
1061 dev_err(tspi->dev, "DmaXfer: ERROR bit set 0x%x\n",
1062 tspi->status_reg);
1063 dev_err(tspi->dev, "DmaXfer 0x%08x:0x%08x\n",
1064 tspi->command1_reg, tspi->dma_control_reg);
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -07001065 tegra_spi_dump_regs(tspi);
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -07001066 tegra_spi_flush_fifos(tspi);
Sowjanya Komatinenia0265252019-04-04 17:14:03 -07001067 complete(&tspi->xfer_completion);
1068 spin_unlock_irqrestore(&tspi->lock, flags);
Stephen Warrenff2251e2013-11-06 16:31:24 -07001069 reset_control_assert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301070 udelay(2);
Stephen Warrenff2251e2013-11-06 16:31:24 -07001071 reset_control_deassert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301072 return IRQ_HANDLED;
1073 }
1074
1075 if (tspi->cur_direction & DATA_DIR_RX)
1076 tegra_spi_copy_spi_rxbuf_to_client_rxbuf(tspi, t);
1077
1078 if (tspi->cur_direction & DATA_DIR_TX)
1079 tspi->cur_pos = tspi->cur_tx_pos;
1080 else
1081 tspi->cur_pos = tspi->cur_rx_pos;
1082
1083 if (tspi->cur_pos == t->len) {
1084 complete(&tspi->xfer_completion);
1085 goto exit;
1086 }
1087
1088 /* Continue transfer in current message */
1089 total_fifo_words = tegra_spi_calculate_curr_xfer_param(tspi->cur_spi,
1090 tspi, t);
1091 if (total_fifo_words > SPI_FIFO_DEPTH)
1092 err = tegra_spi_start_dma_based_transfer(tspi, t);
1093 else
1094 err = tegra_spi_start_cpu_based_transfer(tspi, t);
1095
1096exit:
1097 spin_unlock_irqrestore(&tspi->lock, flags);
1098 return IRQ_HANDLED;
1099}
1100
1101static irqreturn_t tegra_spi_isr_thread(int irq, void *context_data)
1102{
1103 struct tegra_spi_data *tspi = context_data;
1104
1105 if (!tspi->is_curr_dma_xfer)
1106 return handle_cpu_based_xfer(tspi);
1107 return handle_dma_based_xfer(tspi);
1108}
1109
1110static irqreturn_t tegra_spi_isr(int irq, void *context_data)
1111{
1112 struct tegra_spi_data *tspi = context_data;
1113
1114 tspi->status_reg = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
1115 if (tspi->cur_direction & DATA_DIR_TX)
1116 tspi->tx_status = tspi->status_reg &
1117 (SPI_TX_FIFO_UNF | SPI_TX_FIFO_OVF);
1118
1119 if (tspi->cur_direction & DATA_DIR_RX)
1120 tspi->rx_status = tspi->status_reg &
1121 (SPI_RX_FIFO_OVF | SPI_RX_FIFO_UNF);
1122 tegra_spi_clear_status(tspi);
1123
1124 return IRQ_WAKE_THREAD;
1125}
1126
Jingoo Han0ac83f32014-05-07 16:51:02 +09001127static const struct of_device_id tegra_spi_of_match[] = {
Laxman Dewanganf333a332013-02-22 18:07:39 +05301128 { .compatible = "nvidia,tegra114-spi", },
1129 {}
1130};
1131MODULE_DEVICE_TABLE(of, tegra_spi_of_match);
1132
1133static int tegra_spi_probe(struct platform_device *pdev)
1134{
1135 struct spi_master *master;
1136 struct tegra_spi_data *tspi;
1137 struct resource *r;
1138 int ret, spi_irq;
1139
1140 master = spi_alloc_master(&pdev->dev, sizeof(*tspi));
1141 if (!master) {
1142 dev_err(&pdev->dev, "master allocation failed\n");
1143 return -ENOMEM;
1144 }
Jingoo Han24b5a822013-05-23 19:20:40 +09001145 platform_set_drvdata(pdev, master);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301146 tspi = spi_master_get_devdata(master);
1147
Axel Lin383840d2014-02-10 21:48:16 +08001148 if (of_property_read_u32(pdev->dev.of_node, "spi-max-frequency",
1149 &master->max_speed_hz))
1150 master->max_speed_hz = 25000000; /* 25MHz */
Laxman Dewanganf333a332013-02-22 18:07:39 +05301151
1152 /* the spi->mode bits understood by this driver: */
Sowjanya Komatineni2b17a3c2019-03-26 22:56:33 -07001153 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_LSB_FIRST;
Sowjanya Komatinenif0a0bc92019-04-04 17:14:05 -07001154 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301155 master->setup = tegra_spi_setup;
1156 master->transfer_one_message = tegra_spi_transfer_one_message;
1157 master->num_chipselect = MAX_CHIP_SELECT;
Mark Brown612aa5c2013-07-28 15:37:31 +01001158 master->auto_runtime_pm = true;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301159
1160 tspi->master = master;
1161 tspi->dev = &pdev->dev;
1162 spin_lock_init(&tspi->lock);
1163
1164 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301165 tspi->base = devm_ioremap_resource(&pdev->dev, r);
1166 if (IS_ERR(tspi->base)) {
1167 ret = PTR_ERR(tspi->base);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301168 goto exit_free_master;
1169 }
Laurent Navet5f7f54b2013-05-14 12:07:12 +02001170 tspi->phys = r->start;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301171
1172 spi_irq = platform_get_irq(pdev, 0);
1173 tspi->irq = spi_irq;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301174
1175 tspi->clk = devm_clk_get(&pdev->dev, "spi");
1176 if (IS_ERR(tspi->clk)) {
1177 dev_err(&pdev->dev, "can not get clock\n");
1178 ret = PTR_ERR(tspi->clk);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001179 goto exit_free_master;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301180 }
1181
Philipp Zabeld006edb2017-07-19 17:26:23 +02001182 tspi->rst = devm_reset_control_get_exclusive(&pdev->dev, "spi");
Stephen Warrenff2251e2013-11-06 16:31:24 -07001183 if (IS_ERR(tspi->rst)) {
1184 dev_err(&pdev->dev, "can not get reset\n");
1185 ret = PTR_ERR(tspi->rst);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001186 goto exit_free_master;
Stephen Warrenff2251e2013-11-06 16:31:24 -07001187 }
1188
Laxman Dewanganf333a332013-02-22 18:07:39 +05301189 tspi->max_buf_size = SPI_FIFO_DEPTH << 2;
1190 tspi->dma_buf_size = DEFAULT_SPI_DMA_BUF_LEN;
1191
Stephen Warrena915d152013-11-11 13:13:47 -07001192 ret = tegra_spi_init_dma_param(tspi, true);
1193 if (ret < 0)
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001194 goto exit_free_master;
Stephen Warrena915d152013-11-11 13:13:47 -07001195 ret = tegra_spi_init_dma_param(tspi, false);
1196 if (ret < 0)
1197 goto exit_rx_dma_free;
1198 tspi->max_buf_size = tspi->dma_buf_size;
1199 init_completion(&tspi->tx_dma_complete);
1200 init_completion(&tspi->rx_dma_complete);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301201
1202 init_completion(&tspi->xfer_completion);
1203
1204 pm_runtime_enable(&pdev->dev);
1205 if (!pm_runtime_enabled(&pdev->dev)) {
1206 ret = tegra_spi_runtime_resume(&pdev->dev);
1207 if (ret)
1208 goto exit_pm_disable;
1209 }
1210
1211 ret = pm_runtime_get_sync(&pdev->dev);
1212 if (ret < 0) {
1213 dev_err(&pdev->dev, "pm runtime get failed, e = %d\n", ret);
1214 goto exit_pm_disable;
1215 }
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001216
1217 reset_control_assert(tspi->rst);
1218 udelay(2);
1219 reset_control_deassert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301220 tspi->def_command1_reg = SPI_M_S;
1221 tegra_spi_writel(tspi, tspi->def_command1_reg, SPI_COMMAND1);
1222 pm_runtime_put(&pdev->dev);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001223 ret = request_threaded_irq(tspi->irq, tegra_spi_isr,
1224 tegra_spi_isr_thread, IRQF_ONESHOT,
1225 dev_name(&pdev->dev), tspi);
1226 if (ret < 0) {
1227 dev_err(&pdev->dev, "Failed to register ISR for IRQ %d\n",
1228 tspi->irq);
1229 goto exit_pm_disable;
1230 }
Laxman Dewanganf333a332013-02-22 18:07:39 +05301231
1232 master->dev.of_node = pdev->dev.of_node;
Jingoo Han5c809642013-09-24 13:49:24 +09001233 ret = devm_spi_register_master(&pdev->dev, master);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301234 if (ret < 0) {
1235 dev_err(&pdev->dev, "can not register to master err %d\n", ret);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001236 goto exit_free_irq;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301237 }
1238 return ret;
1239
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001240exit_free_irq:
1241 free_irq(spi_irq, tspi);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301242exit_pm_disable:
1243 pm_runtime_disable(&pdev->dev);
1244 if (!pm_runtime_status_suspended(&pdev->dev))
1245 tegra_spi_runtime_suspend(&pdev->dev);
1246 tegra_spi_deinit_dma_param(tspi, false);
1247exit_rx_dma_free:
1248 tegra_spi_deinit_dma_param(tspi, true);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301249exit_free_master:
1250 spi_master_put(master);
1251 return ret;
1252}
1253
1254static int tegra_spi_remove(struct platform_device *pdev)
1255{
Jingoo Han24b5a822013-05-23 19:20:40 +09001256 struct spi_master *master = platform_get_drvdata(pdev);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301257 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1258
1259 free_irq(tspi->irq, tspi);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301260
1261 if (tspi->tx_dma_chan)
1262 tegra_spi_deinit_dma_param(tspi, false);
1263
1264 if (tspi->rx_dma_chan)
1265 tegra_spi_deinit_dma_param(tspi, true);
1266
1267 pm_runtime_disable(&pdev->dev);
1268 if (!pm_runtime_status_suspended(&pdev->dev))
1269 tegra_spi_runtime_suspend(&pdev->dev);
1270
1271 return 0;
1272}
1273
1274#ifdef CONFIG_PM_SLEEP
1275static int tegra_spi_suspend(struct device *dev)
1276{
1277 struct spi_master *master = dev_get_drvdata(dev);
1278
1279 return spi_master_suspend(master);
1280}
1281
1282static int tegra_spi_resume(struct device *dev)
1283{
1284 struct spi_master *master = dev_get_drvdata(dev);
1285 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1286 int ret;
1287
1288 ret = pm_runtime_get_sync(dev);
1289 if (ret < 0) {
1290 dev_err(dev, "pm runtime failed, e = %d\n", ret);
1291 return ret;
1292 }
1293 tegra_spi_writel(tspi, tspi->command1_reg, SPI_COMMAND1);
1294 pm_runtime_put(dev);
1295
1296 return spi_master_resume(master);
1297}
1298#endif
1299
1300static int tegra_spi_runtime_suspend(struct device *dev)
1301{
1302 struct spi_master *master = dev_get_drvdata(dev);
1303 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1304
1305 /* Flush all write which are in PPSB queue by reading back */
1306 tegra_spi_readl(tspi, SPI_COMMAND1);
1307
1308 clk_disable_unprepare(tspi->clk);
1309 return 0;
1310}
1311
1312static int tegra_spi_runtime_resume(struct device *dev)
1313{
1314 struct spi_master *master = dev_get_drvdata(dev);
1315 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1316 int ret;
1317
1318 ret = clk_prepare_enable(tspi->clk);
1319 if (ret < 0) {
1320 dev_err(tspi->dev, "clk_prepare failed: %d\n", ret);
1321 return ret;
1322 }
1323 return 0;
1324}
1325
1326static const struct dev_pm_ops tegra_spi_pm_ops = {
1327 SET_RUNTIME_PM_OPS(tegra_spi_runtime_suspend,
1328 tegra_spi_runtime_resume, NULL)
1329 SET_SYSTEM_SLEEP_PM_OPS(tegra_spi_suspend, tegra_spi_resume)
1330};
1331static struct platform_driver tegra_spi_driver = {
1332 .driver = {
1333 .name = "spi-tegra114",
Laxman Dewanganf333a332013-02-22 18:07:39 +05301334 .pm = &tegra_spi_pm_ops,
1335 .of_match_table = tegra_spi_of_match,
1336 },
1337 .probe = tegra_spi_probe,
1338 .remove = tegra_spi_remove,
1339};
1340module_platform_driver(tegra_spi_driver);
1341
1342MODULE_ALIAS("platform:spi-tegra114");
1343MODULE_DESCRIPTION("NVIDIA Tegra114 SPI Controller Driver");
1344MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
1345MODULE_LICENSE("GPL v2");