blob: 402799c7f6b722c204b2e24f39a9b0f920a1cb35 [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 Komatineni76457eea2019-04-04 17:14:01 -0700262 if ((bits_per_word == 8 || bits_per_word == 16 ||
263 bits_per_word == 32) && t->len > 3) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530264 tspi->is_packed = 1;
265 tspi->words_per_32bit = 32/bits_per_word;
266 } else {
267 tspi->is_packed = 0;
268 tspi->words_per_32bit = 1;
269 }
270
271 if (tspi->is_packed) {
272 max_len = min(remain_len, tspi->max_buf_size);
273 tspi->curr_dma_words = max_len/tspi->bytes_per_word;
274 total_fifo_words = (max_len + 3) / 4;
275 } else {
276 max_word = (remain_len - 1) / tspi->bytes_per_word + 1;
277 max_word = min(max_word, tspi->max_buf_size/4);
278 tspi->curr_dma_words = max_word;
279 total_fifo_words = max_word;
280 }
281 return total_fifo_words;
282}
283
284static unsigned tegra_spi_fill_tx_fifo_from_client_txbuf(
285 struct tegra_spi_data *tspi, struct spi_transfer *t)
286{
287 unsigned nbytes;
288 unsigned tx_empty_count;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100289 u32 fifo_status;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530290 unsigned max_n_32bit;
291 unsigned i, count;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530292 unsigned int written_words;
293 unsigned fifo_words_left;
294 u8 *tx_buf = (u8 *)t->tx_buf + tspi->cur_tx_pos;
295
296 fifo_status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
297 tx_empty_count = SPI_TX_FIFO_EMPTY_COUNT(fifo_status);
298
299 if (tspi->is_packed) {
300 fifo_words_left = tx_empty_count * tspi->words_per_32bit;
301 written_words = min(fifo_words_left, tspi->curr_dma_words);
302 nbytes = written_words * tspi->bytes_per_word;
303 max_n_32bit = DIV_ROUND_UP(nbytes, 4);
304 for (count = 0; count < max_n_32bit; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100305 u32 x = 0;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900306
Laxman Dewanganf333a332013-02-22 18:07:39 +0530307 for (i = 0; (i < 4) && nbytes; i++, nbytes--)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100308 x |= (u32)(*tx_buf++) << (i * 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530309 tegra_spi_writel(tspi, x, SPI_TX_FIFO);
310 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700311
312 tspi->cur_tx_pos += written_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530313 } else {
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700314 unsigned int write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530315 max_n_32bit = min(tspi->curr_dma_words, tx_empty_count);
316 written_words = max_n_32bit;
317 nbytes = written_words * tspi->bytes_per_word;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700318 if (nbytes > t->len - tspi->cur_pos)
319 nbytes = t->len - tspi->cur_pos;
320 write_bytes = nbytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530321 for (count = 0; count < max_n_32bit; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100322 u32 x = 0;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900323
Laxman Dewanganf333a332013-02-22 18:07:39 +0530324 for (i = 0; nbytes && (i < tspi->bytes_per_word);
325 i++, nbytes--)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100326 x |= (u32)(*tx_buf++) << (i * 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530327 tegra_spi_writel(tspi, x, SPI_TX_FIFO);
328 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700329
330 tspi->cur_tx_pos += write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530331 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700332
Laxman Dewanganf333a332013-02-22 18:07:39 +0530333 return written_words;
334}
335
336static unsigned int tegra_spi_read_rx_fifo_to_client_rxbuf(
337 struct tegra_spi_data *tspi, struct spi_transfer *t)
338{
339 unsigned rx_full_count;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100340 u32 fifo_status;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530341 unsigned i, count;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530342 unsigned int read_words = 0;
343 unsigned len;
344 u8 *rx_buf = (u8 *)t->rx_buf + tspi->cur_rx_pos;
345
346 fifo_status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
347 rx_full_count = SPI_RX_FIFO_FULL_COUNT(fifo_status);
348 if (tspi->is_packed) {
349 len = tspi->curr_dma_words * tspi->bytes_per_word;
350 for (count = 0; count < rx_full_count; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100351 u32 x = tegra_spi_readl(tspi, SPI_RX_FIFO);
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900352
Laxman Dewanganf333a332013-02-22 18:07:39 +0530353 for (i = 0; len && (i < 4); i++, len--)
354 *rx_buf++ = (x >> i*8) & 0xFF;
355 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530356 read_words += tspi->curr_dma_words;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700357 tspi->cur_rx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530358 } else {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100359 u32 rx_mask = ((u32)1 << t->bits_per_word) - 1;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700360 u8 bytes_per_word = tspi->bytes_per_word;
361 unsigned int read_bytes;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900362
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700363 len = rx_full_count * bytes_per_word;
364 if (len > t->len - tspi->cur_pos)
365 len = t->len - tspi->cur_pos;
366 read_bytes = len;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530367 for (count = 0; count < rx_full_count; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100368 u32 x = tegra_spi_readl(tspi, SPI_RX_FIFO) & rx_mask;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900369
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700370 for (i = 0; len && (i < bytes_per_word); i++, len--)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530371 *rx_buf++ = (x >> (i*8)) & 0xFF;
372 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530373 read_words += rx_full_count;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700374 tspi->cur_rx_pos += read_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530375 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700376
Laxman Dewanganf333a332013-02-22 18:07:39 +0530377 return read_words;
378}
379
380static void tegra_spi_copy_client_txbuf_to_spi_txbuf(
381 struct tegra_spi_data *tspi, struct spi_transfer *t)
382{
Laxman Dewanganf333a332013-02-22 18:07:39 +0530383 /* Make the dma buffer to read by cpu */
384 dma_sync_single_for_cpu(tspi->dev, tspi->tx_dma_phys,
385 tspi->dma_buf_size, DMA_TO_DEVICE);
386
387 if (tspi->is_packed) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100388 unsigned len = tspi->curr_dma_words * tspi->bytes_per_word;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900389
Laxman Dewanganf333a332013-02-22 18:07:39 +0530390 memcpy(tspi->tx_dma_buf, t->tx_buf + tspi->cur_pos, len);
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700391 tspi->cur_tx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530392 } else {
393 unsigned int i;
394 unsigned int count;
395 u8 *tx_buf = (u8 *)t->tx_buf + tspi->cur_tx_pos;
396 unsigned consume = tspi->curr_dma_words * tspi->bytes_per_word;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700397 unsigned int write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530398
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700399 if (consume > t->len - tspi->cur_pos)
400 consume = t->len - tspi->cur_pos;
401 write_bytes = consume;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530402 for (count = 0; count < tspi->curr_dma_words; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100403 u32 x = 0;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900404
Laxman Dewanganf333a332013-02-22 18:07:39 +0530405 for (i = 0; consume && (i < tspi->bytes_per_word);
406 i++, consume--)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100407 x |= (u32)(*tx_buf++) << (i * 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530408 tspi->tx_dma_buf[count] = x;
409 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700410
411 tspi->cur_tx_pos += write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530412 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530413
414 /* Make the dma buffer to read by dma */
415 dma_sync_single_for_device(tspi->dev, tspi->tx_dma_phys,
416 tspi->dma_buf_size, DMA_TO_DEVICE);
417}
418
419static void tegra_spi_copy_spi_rxbuf_to_client_rxbuf(
420 struct tegra_spi_data *tspi, struct spi_transfer *t)
421{
Laxman Dewanganf333a332013-02-22 18:07:39 +0530422 /* Make the dma buffer to read by cpu */
423 dma_sync_single_for_cpu(tspi->dev, tspi->rx_dma_phys,
424 tspi->dma_buf_size, DMA_FROM_DEVICE);
425
426 if (tspi->is_packed) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100427 unsigned len = tspi->curr_dma_words * tspi->bytes_per_word;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900428
Laxman Dewanganf333a332013-02-22 18:07:39 +0530429 memcpy(t->rx_buf + tspi->cur_rx_pos, tspi->rx_dma_buf, len);
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700430 tspi->cur_rx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530431 } else {
432 unsigned int i;
433 unsigned int count;
434 unsigned char *rx_buf = t->rx_buf + tspi->cur_rx_pos;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100435 u32 rx_mask = ((u32)1 << t->bits_per_word) - 1;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700436 unsigned consume = tspi->curr_dma_words * tspi->bytes_per_word;
437 unsigned int read_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530438
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700439 if (consume > t->len - tspi->cur_pos)
440 consume = t->len - tspi->cur_pos;
441 read_bytes = consume;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530442 for (count = 0; count < tspi->curr_dma_words; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100443 u32 x = tspi->rx_dma_buf[count] & rx_mask;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900444
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700445 for (i = 0; consume && (i < tspi->bytes_per_word);
446 i++, consume--)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530447 *rx_buf++ = (x >> (i*8)) & 0xFF;
448 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700449
450 tspi->cur_rx_pos += read_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530451 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530452
453 /* Make the dma buffer to read by dma */
454 dma_sync_single_for_device(tspi->dev, tspi->rx_dma_phys,
455 tspi->dma_buf_size, DMA_FROM_DEVICE);
456}
457
458static void tegra_spi_dma_complete(void *args)
459{
460 struct completion *dma_complete = args;
461
462 complete(dma_complete);
463}
464
465static int tegra_spi_start_tx_dma(struct tegra_spi_data *tspi, int len)
466{
Wolfram Sang16735d02013-11-14 14:32:02 -0800467 reinit_completion(&tspi->tx_dma_complete);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530468 tspi->tx_dma_desc = dmaengine_prep_slave_single(tspi->tx_dma_chan,
469 tspi->tx_dma_phys, len, DMA_MEM_TO_DEV,
470 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
471 if (!tspi->tx_dma_desc) {
472 dev_err(tspi->dev, "Not able to get desc for Tx\n");
473 return -EIO;
474 }
475
476 tspi->tx_dma_desc->callback = tegra_spi_dma_complete;
477 tspi->tx_dma_desc->callback_param = &tspi->tx_dma_complete;
478
479 dmaengine_submit(tspi->tx_dma_desc);
480 dma_async_issue_pending(tspi->tx_dma_chan);
481 return 0;
482}
483
484static int tegra_spi_start_rx_dma(struct tegra_spi_data *tspi, int len)
485{
Wolfram Sang16735d02013-11-14 14:32:02 -0800486 reinit_completion(&tspi->rx_dma_complete);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530487 tspi->rx_dma_desc = dmaengine_prep_slave_single(tspi->rx_dma_chan,
488 tspi->rx_dma_phys, len, DMA_DEV_TO_MEM,
489 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
490 if (!tspi->rx_dma_desc) {
491 dev_err(tspi->dev, "Not able to get desc for Rx\n");
492 return -EIO;
493 }
494
495 tspi->rx_dma_desc->callback = tegra_spi_dma_complete;
496 tspi->rx_dma_desc->callback_param = &tspi->rx_dma_complete;
497
498 dmaengine_submit(tspi->rx_dma_desc);
499 dma_async_issue_pending(tspi->rx_dma_chan);
500 return 0;
501}
502
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -0700503static int tegra_spi_flush_fifos(struct tegra_spi_data *tspi)
504{
505 unsigned long timeout = jiffies + HZ;
506 u32 status;
507
508 status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
509 if ((status & SPI_FIFO_EMPTY) != SPI_FIFO_EMPTY) {
510 status |= SPI_RX_FIFO_FLUSH | SPI_TX_FIFO_FLUSH;
511 tegra_spi_writel(tspi, status, SPI_FIFO_STATUS);
512 while ((status & SPI_FIFO_EMPTY) != SPI_FIFO_EMPTY) {
513 status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
514 if (time_after(jiffies, timeout)) {
515 dev_err(tspi->dev,
516 "timeout waiting for fifo flush\n");
517 return -EIO;
518 }
519
520 udelay(1);
521 }
522 }
523
524 return 0;
525}
526
Laxman Dewanganf333a332013-02-22 18:07:39 +0530527static int tegra_spi_start_dma_based_transfer(
528 struct tegra_spi_data *tspi, struct spi_transfer *t)
529{
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100530 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530531 unsigned int len;
532 int ret = 0;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700533 u8 dma_burst;
534 struct dma_slave_config dma_sconfig = {0};
Laxman Dewanganf333a332013-02-22 18:07:39 +0530535
536 val = SPI_DMA_BLK_SET(tspi->curr_dma_words - 1);
537 tegra_spi_writel(tspi, val, SPI_DMA_BLK);
538
539 if (tspi->is_packed)
540 len = DIV_ROUND_UP(tspi->curr_dma_words * tspi->bytes_per_word,
541 4) * 4;
542 else
543 len = tspi->curr_dma_words * 4;
544
545 /* Set attention level based on length of transfer */
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700546 if (len & 0xF) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530547 val |= SPI_TX_TRIG_1 | SPI_RX_TRIG_1;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700548 dma_burst = 1;
549 } else if (((len) >> 4) & 0x1) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530550 val |= SPI_TX_TRIG_4 | SPI_RX_TRIG_4;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700551 dma_burst = 4;
552 } else {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530553 val |= SPI_TX_TRIG_8 | SPI_RX_TRIG_8;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700554 dma_burst = 8;
555 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530556
557 if (tspi->cur_direction & DATA_DIR_TX)
558 val |= SPI_IE_TX;
559
560 if (tspi->cur_direction & DATA_DIR_RX)
561 val |= SPI_IE_RX;
562
563 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
564 tspi->dma_control_reg = val;
565
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700566 dma_sconfig.device_fc = true;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530567 if (tspi->cur_direction & DATA_DIR_TX) {
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700568 dma_sconfig.dst_addr = tspi->phys + SPI_TX_FIFO;
569 dma_sconfig.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
570 dma_sconfig.dst_maxburst = dma_burst;
571 ret = dmaengine_slave_config(tspi->tx_dma_chan, &dma_sconfig);
572 if (ret < 0) {
573 dev_err(tspi->dev,
574 "DMA slave config failed: %d\n", ret);
575 return ret;
576 }
577
Laxman Dewanganf333a332013-02-22 18:07:39 +0530578 tegra_spi_copy_client_txbuf_to_spi_txbuf(tspi, t);
579 ret = tegra_spi_start_tx_dma(tspi, len);
580 if (ret < 0) {
581 dev_err(tspi->dev,
582 "Starting tx dma failed, err %d\n", ret);
583 return ret;
584 }
585 }
586
587 if (tspi->cur_direction & DATA_DIR_RX) {
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700588 dma_sconfig.src_addr = tspi->phys + SPI_RX_FIFO;
589 dma_sconfig.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
590 dma_sconfig.src_maxburst = dma_burst;
591 ret = dmaengine_slave_config(tspi->rx_dma_chan, &dma_sconfig);
592 if (ret < 0) {
593 dev_err(tspi->dev,
594 "DMA slave config failed: %d\n", ret);
595 return ret;
596 }
597
Laxman Dewanganf333a332013-02-22 18:07:39 +0530598 /* Make the dma buffer to read by dma */
599 dma_sync_single_for_device(tspi->dev, tspi->rx_dma_phys,
600 tspi->dma_buf_size, DMA_FROM_DEVICE);
601
602 ret = tegra_spi_start_rx_dma(tspi, len);
603 if (ret < 0) {
604 dev_err(tspi->dev,
605 "Starting rx dma failed, err %d\n", ret);
606 if (tspi->cur_direction & DATA_DIR_TX)
607 dmaengine_terminate_all(tspi->tx_dma_chan);
608 return ret;
609 }
610 }
611 tspi->is_curr_dma_xfer = true;
612 tspi->dma_control_reg = val;
613
614 val |= SPI_DMA_EN;
615 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
616 return ret;
617}
618
619static int tegra_spi_start_cpu_based_transfer(
620 struct tegra_spi_data *tspi, struct spi_transfer *t)
621{
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100622 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530623 unsigned cur_words;
624
625 if (tspi->cur_direction & DATA_DIR_TX)
626 cur_words = tegra_spi_fill_tx_fifo_from_client_txbuf(tspi, t);
627 else
628 cur_words = tspi->curr_dma_words;
629
630 val = SPI_DMA_BLK_SET(cur_words - 1);
631 tegra_spi_writel(tspi, val, SPI_DMA_BLK);
632
633 val = 0;
634 if (tspi->cur_direction & DATA_DIR_TX)
635 val |= SPI_IE_TX;
636
637 if (tspi->cur_direction & DATA_DIR_RX)
638 val |= SPI_IE_RX;
639
640 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
641 tspi->dma_control_reg = val;
642
643 tspi->is_curr_dma_xfer = false;
644
645 val |= SPI_DMA_EN;
646 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
647 return 0;
648}
649
650static int tegra_spi_init_dma_param(struct tegra_spi_data *tspi,
651 bool dma_to_memory)
652{
653 struct dma_chan *dma_chan;
654 u32 *dma_buf;
655 dma_addr_t dma_phys;
656 int ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530657
Stephen Warrena915d152013-11-11 13:13:47 -0700658 dma_chan = dma_request_slave_channel_reason(tspi->dev,
659 dma_to_memory ? "rx" : "tx");
660 if (IS_ERR(dma_chan)) {
661 ret = PTR_ERR(dma_chan);
662 if (ret != -EPROBE_DEFER)
663 dev_err(tspi->dev,
664 "Dma channel is not available: %d\n", ret);
665 return ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530666 }
667
668 dma_buf = dma_alloc_coherent(tspi->dev, tspi->dma_buf_size,
669 &dma_phys, GFP_KERNEL);
670 if (!dma_buf) {
671 dev_err(tspi->dev, " Not able to allocate the dma buffer\n");
672 dma_release_channel(dma_chan);
673 return -ENOMEM;
674 }
675
Laxman Dewanganf333a332013-02-22 18:07:39 +0530676 if (dma_to_memory) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530677 tspi->rx_dma_chan = dma_chan;
678 tspi->rx_dma_buf = dma_buf;
679 tspi->rx_dma_phys = dma_phys;
680 } else {
681 tspi->tx_dma_chan = dma_chan;
682 tspi->tx_dma_buf = dma_buf;
683 tspi->tx_dma_phys = dma_phys;
684 }
685 return 0;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530686}
687
688static void tegra_spi_deinit_dma_param(struct tegra_spi_data *tspi,
689 bool dma_to_memory)
690{
691 u32 *dma_buf;
692 dma_addr_t dma_phys;
693 struct dma_chan *dma_chan;
694
695 if (dma_to_memory) {
696 dma_buf = tspi->rx_dma_buf;
697 dma_chan = tspi->rx_dma_chan;
698 dma_phys = tspi->rx_dma_phys;
699 tspi->rx_dma_chan = NULL;
700 tspi->rx_dma_buf = NULL;
701 } else {
702 dma_buf = tspi->tx_dma_buf;
703 dma_chan = tspi->tx_dma_chan;
704 dma_phys = tspi->tx_dma_phys;
705 tspi->tx_dma_buf = NULL;
706 tspi->tx_dma_chan = NULL;
707 }
708 if (!dma_chan)
709 return;
710
711 dma_free_coherent(tspi->dev, tspi->dma_buf_size, dma_buf, dma_phys);
712 dma_release_channel(dma_chan);
713}
714
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100715static u32 tegra_spi_setup_transfer_one(struct spi_device *spi,
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400716 struct spi_transfer *t, bool is_first_of_msg)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530717{
718 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
719 u32 speed = t->speed_hz;
720 u8 bits_per_word = t->bits_per_word;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100721 u32 command1;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530722 int req_mode;
723
724 if (speed != tspi->cur_speed) {
725 clk_set_rate(tspi->clk, speed);
726 tspi->cur_speed = speed;
727 }
728
729 tspi->cur_spi = spi;
730 tspi->cur_pos = 0;
731 tspi->cur_rx_pos = 0;
732 tspi->cur_tx_pos = 0;
733 tspi->curr_xfer = t;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530734
735 if (is_first_of_msg) {
736 tegra_spi_clear_status(tspi);
737
738 command1 = tspi->def_command1_reg;
739 command1 |= SPI_BIT_LENGTH(bits_per_word - 1);
740
741 command1 &= ~SPI_CONTROL_MODE_MASK;
742 req_mode = spi->mode & 0x3;
743 if (req_mode == SPI_MODE_0)
744 command1 |= SPI_CONTROL_MODE_0;
745 else if (req_mode == SPI_MODE_1)
746 command1 |= SPI_CONTROL_MODE_1;
747 else if (req_mode == SPI_MODE_2)
748 command1 |= SPI_CONTROL_MODE_2;
749 else if (req_mode == SPI_MODE_3)
750 command1 |= SPI_CONTROL_MODE_3;
751
Sowjanya Komatineni2b17a3c2019-03-26 22:56:33 -0700752 if (spi->mode & SPI_LSB_FIRST)
753 command1 |= SPI_LSBIT_FE;
754 else
755 command1 &= ~SPI_LSBIT_FE;
756
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400757 if (tspi->cs_control) {
758 if (tspi->cs_control != spi)
759 tegra_spi_writel(tspi, command1, SPI_COMMAND1);
760 tspi->cs_control = NULL;
761 } else
762 tegra_spi_writel(tspi, command1, SPI_COMMAND1);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530763
764 command1 |= SPI_CS_SW_HW;
765 if (spi->mode & SPI_CS_HIGH)
Ralf Ramsauer979a9af2017-10-05 13:22:36 +0200766 command1 |= SPI_CS_SW_VAL;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530767 else
Ralf Ramsauer979a9af2017-10-05 13:22:36 +0200768 command1 &= ~SPI_CS_SW_VAL;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530769
770 tegra_spi_writel(tspi, 0, SPI_COMMAND2);
771 } else {
772 command1 = tspi->command1_reg;
773 command1 &= ~SPI_BIT_LENGTH(~0);
774 command1 |= SPI_BIT_LENGTH(bits_per_word - 1);
775 }
776
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400777 return command1;
778}
779
780static int tegra_spi_start_transfer_one(struct spi_device *spi,
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100781 struct spi_transfer *t, u32 command1)
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400782{
783 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
784 unsigned total_fifo_words;
785 int ret;
786
787 total_fifo_words = tegra_spi_calculate_curr_xfer_param(spi, tspi, t);
788
Laxman Dewanganf333a332013-02-22 18:07:39 +0530789 if (tspi->is_packed)
790 command1 |= SPI_PACKED;
Sowjanya Komatineni7b3d10c2019-03-26 22:56:23 -0700791 else
792 command1 &= ~SPI_PACKED;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530793
794 command1 &= ~(SPI_CS_SEL_MASK | SPI_TX_EN | SPI_RX_EN);
795 tspi->cur_direction = 0;
796 if (t->rx_buf) {
797 command1 |= SPI_RX_EN;
798 tspi->cur_direction |= DATA_DIR_RX;
799 }
800 if (t->tx_buf) {
801 command1 |= SPI_TX_EN;
802 tspi->cur_direction |= DATA_DIR_TX;
803 }
804 command1 |= SPI_CS_SEL(spi->chip_select);
805 tegra_spi_writel(tspi, command1, SPI_COMMAND1);
806 tspi->command1_reg = command1;
807
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100808 dev_dbg(tspi->dev, "The def 0x%x and written 0x%x\n",
809 tspi->def_command1_reg, (unsigned)command1);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530810
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -0700811 ret = tegra_spi_flush_fifos(tspi);
812 if (ret < 0)
813 return ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530814 if (total_fifo_words > SPI_FIFO_DEPTH)
815 ret = tegra_spi_start_dma_based_transfer(tspi, t);
816 else
817 ret = tegra_spi_start_cpu_based_transfer(tspi, t);
818 return ret;
819}
820
821static int tegra_spi_setup(struct spi_device *spi)
822{
823 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100824 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530825 unsigned long flags;
826 int ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530827
828 dev_dbg(&spi->dev, "setup %d bpw, %scpol, %scpha, %dHz\n",
829 spi->bits_per_word,
830 spi->mode & SPI_CPOL ? "" : "~",
831 spi->mode & SPI_CPHA ? "" : "~",
832 spi->max_speed_hz);
833
Laxman Dewanganf333a332013-02-22 18:07:39 +0530834 ret = pm_runtime_get_sync(tspi->dev);
835 if (ret < 0) {
836 dev_err(tspi->dev, "pm runtime failed, e = %d\n", ret);
837 return ret;
838 }
839
840 spin_lock_irqsave(&tspi->lock, flags);
841 val = tspi->def_command1_reg;
842 if (spi->mode & SPI_CS_HIGH)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100843 val &= ~SPI_CS_POL_INACTIVE(spi->chip_select);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530844 else
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100845 val |= SPI_CS_POL_INACTIVE(spi->chip_select);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530846 tspi->def_command1_reg = val;
847 tegra_spi_writel(tspi, tspi->def_command1_reg, SPI_COMMAND1);
848 spin_unlock_irqrestore(&tspi->lock, flags);
849
850 pm_runtime_put(tspi->dev);
851 return 0;
852}
853
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400854static void tegra_spi_transfer_delay(int delay)
855{
856 if (!delay)
857 return;
858
859 if (delay >= 1000)
860 mdelay(delay / 1000);
861
862 udelay(delay % 1000);
863}
864
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -0700865static void tegra_spi_transfer_end(struct spi_device *spi)
866{
867 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
868 int cs_val = (spi->mode & SPI_CS_HIGH) ? 0 : 1;
869
870 if (cs_val)
871 tspi->command1_reg |= SPI_CS_SW_VAL;
872 else
873 tspi->command1_reg &= ~SPI_CS_SW_VAL;
874 tegra_spi_writel(tspi, tspi->command1_reg, SPI_COMMAND1);
875 tegra_spi_writel(tspi, tspi->def_command1_reg, SPI_COMMAND1);
876}
877
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -0700878static void tegra_spi_dump_regs(struct tegra_spi_data *tspi)
879{
880 dev_dbg(tspi->dev, "============ SPI REGISTER DUMP ============\n");
881 dev_dbg(tspi->dev, "Command1: 0x%08x | Command2: 0x%08x\n",
882 tegra_spi_readl(tspi, SPI_COMMAND1),
883 tegra_spi_readl(tspi, SPI_COMMAND2));
884 dev_dbg(tspi->dev, "DMA_CTL: 0x%08x | DMA_BLK: 0x%08x\n",
885 tegra_spi_readl(tspi, SPI_DMA_CTL),
886 tegra_spi_readl(tspi, SPI_DMA_BLK));
887 dev_dbg(tspi->dev, "TRANS_STAT: 0x%08x | FIFO_STATUS: 0x%08x\n",
888 tegra_spi_readl(tspi, SPI_TRANS_STATUS),
889 tegra_spi_readl(tspi, SPI_FIFO_STATUS));
890}
891
Laxman Dewanganf333a332013-02-22 18:07:39 +0530892static int tegra_spi_transfer_one_message(struct spi_master *master,
893 struct spi_message *msg)
894{
895 bool is_first_msg = true;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530896 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
897 struct spi_transfer *xfer;
898 struct spi_device *spi = msg->spi;
899 int ret;
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400900 bool skip = false;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530901
902 msg->status = 0;
903 msg->actual_length = 0;
904
Laxman Dewanganf333a332013-02-22 18:07:39 +0530905 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100906 u32 cmd1;
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400907
Wolfram Sang16735d02013-11-14 14:32:02 -0800908 reinit_completion(&tspi->xfer_completion);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400909
910 cmd1 = tegra_spi_setup_transfer_one(spi, xfer, is_first_msg);
911
912 if (!xfer->len) {
913 ret = 0;
914 skip = true;
915 goto complete_xfer;
916 }
917
918 ret = tegra_spi_start_transfer_one(spi, xfer, cmd1);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530919 if (ret < 0) {
920 dev_err(tspi->dev,
921 "spi can not start transfer, err %d\n", ret);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400922 goto complete_xfer;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530923 }
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400924
Laxman Dewanganf333a332013-02-22 18:07:39 +0530925 is_first_msg = false;
926 ret = wait_for_completion_timeout(&tspi->xfer_completion,
927 SPI_DMA_TIMEOUT);
928 if (WARN_ON(ret == 0)) {
929 dev_err(tspi->dev,
Colin Ian Kingbfca7612017-04-23 18:14:36 +0100930 "spi transfer timeout, err %d\n", ret);
Sowjanya Komatineni32bd1a92019-03-26 22:56:27 -0700931 if (tspi->is_curr_dma_xfer &&
932 (tspi->cur_direction & DATA_DIR_TX))
933 dmaengine_terminate_all(tspi->tx_dma_chan);
934 if (tspi->is_curr_dma_xfer &&
935 (tspi->cur_direction & DATA_DIR_RX))
936 dmaengine_terminate_all(tspi->rx_dma_chan);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530937 ret = -EIO;
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -0700938 tegra_spi_dump_regs(tspi);
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -0700939 tegra_spi_flush_fifos(tspi);
Sowjanya Komatineni32bd1a92019-03-26 22:56:27 -0700940 reset_control_assert(tspi->rst);
941 udelay(2);
942 reset_control_deassert(tspi->rst);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400943 goto complete_xfer;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530944 }
945
946 if (tspi->tx_status || tspi->rx_status) {
947 dev_err(tspi->dev, "Error in Transfer\n");
948 ret = -EIO;
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -0700949 tegra_spi_dump_regs(tspi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400950 goto complete_xfer;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530951 }
952 msg->actual_length += xfer->len;
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400953
954complete_xfer:
955 if (ret < 0 || skip) {
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -0700956 tegra_spi_transfer_end(spi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400957 tegra_spi_transfer_delay(xfer->delay_usecs);
958 goto exit;
Axel Lin971e9082014-01-15 14:07:04 +0800959 } else if (list_is_last(&xfer->transfer_list,
960 &msg->transfers)) {
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400961 if (xfer->cs_change)
962 tspi->cs_control = spi;
963 else {
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -0700964 tegra_spi_transfer_end(spi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400965 tegra_spi_transfer_delay(xfer->delay_usecs);
966 }
967 } else if (xfer->cs_change) {
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -0700968 tegra_spi_transfer_end(spi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400969 tegra_spi_transfer_delay(xfer->delay_usecs);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530970 }
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400971
Laxman Dewanganf333a332013-02-22 18:07:39 +0530972 }
973 ret = 0;
974exit:
Laxman Dewanganf333a332013-02-22 18:07:39 +0530975 msg->status = ret;
976 spi_finalize_current_message(master);
977 return ret;
978}
979
980static irqreturn_t handle_cpu_based_xfer(struct tegra_spi_data *tspi)
981{
982 struct spi_transfer *t = tspi->curr_xfer;
983 unsigned long flags;
984
985 spin_lock_irqsave(&tspi->lock, flags);
986 if (tspi->tx_status || tspi->rx_status) {
987 dev_err(tspi->dev, "CpuXfer ERROR bit set 0x%x\n",
988 tspi->status_reg);
989 dev_err(tspi->dev, "CpuXfer 0x%08x:0x%08x\n",
990 tspi->command1_reg, tspi->dma_control_reg);
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -0700991 tegra_spi_dump_regs(tspi);
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -0700992 tegra_spi_flush_fifos(tspi);
Sowjanya Komatinenia0265252019-04-04 17:14:03 -0700993 complete(&tspi->xfer_completion);
994 spin_unlock_irqrestore(&tspi->lock, flags);
Stephen Warrenff2251e2013-11-06 16:31:24 -0700995 reset_control_assert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530996 udelay(2);
Stephen Warrenff2251e2013-11-06 16:31:24 -0700997 reset_control_deassert(tspi->rst);
Sowjanya Komatinenia0265252019-04-04 17:14:03 -0700998 return IRQ_HANDLED;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530999 }
1000
1001 if (tspi->cur_direction & DATA_DIR_RX)
1002 tegra_spi_read_rx_fifo_to_client_rxbuf(tspi, t);
1003
1004 if (tspi->cur_direction & DATA_DIR_TX)
1005 tspi->cur_pos = tspi->cur_tx_pos;
1006 else
1007 tspi->cur_pos = tspi->cur_rx_pos;
1008
1009 if (tspi->cur_pos == t->len) {
1010 complete(&tspi->xfer_completion);
1011 goto exit;
1012 }
1013
1014 tegra_spi_calculate_curr_xfer_param(tspi->cur_spi, tspi, t);
1015 tegra_spi_start_cpu_based_transfer(tspi, t);
1016exit:
1017 spin_unlock_irqrestore(&tspi->lock, flags);
1018 return IRQ_HANDLED;
1019}
1020
1021static irqreturn_t handle_dma_based_xfer(struct tegra_spi_data *tspi)
1022{
1023 struct spi_transfer *t = tspi->curr_xfer;
1024 long wait_status;
1025 int err = 0;
1026 unsigned total_fifo_words;
1027 unsigned long flags;
1028
1029 /* Abort dmas if any error */
1030 if (tspi->cur_direction & DATA_DIR_TX) {
1031 if (tspi->tx_status) {
1032 dmaengine_terminate_all(tspi->tx_dma_chan);
1033 err += 1;
1034 } else {
1035 wait_status = wait_for_completion_interruptible_timeout(
1036 &tspi->tx_dma_complete, SPI_DMA_TIMEOUT);
1037 if (wait_status <= 0) {
1038 dmaengine_terminate_all(tspi->tx_dma_chan);
1039 dev_err(tspi->dev, "TxDma Xfer failed\n");
1040 err += 1;
1041 }
1042 }
1043 }
1044
1045 if (tspi->cur_direction & DATA_DIR_RX) {
1046 if (tspi->rx_status) {
1047 dmaengine_terminate_all(tspi->rx_dma_chan);
1048 err += 2;
1049 } else {
1050 wait_status = wait_for_completion_interruptible_timeout(
1051 &tspi->rx_dma_complete, SPI_DMA_TIMEOUT);
1052 if (wait_status <= 0) {
1053 dmaengine_terminate_all(tspi->rx_dma_chan);
1054 dev_err(tspi->dev, "RxDma Xfer failed\n");
1055 err += 2;
1056 }
1057 }
1058 }
1059
1060 spin_lock_irqsave(&tspi->lock, flags);
1061 if (err) {
1062 dev_err(tspi->dev, "DmaXfer: ERROR bit set 0x%x\n",
1063 tspi->status_reg);
1064 dev_err(tspi->dev, "DmaXfer 0x%08x:0x%08x\n",
1065 tspi->command1_reg, tspi->dma_control_reg);
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -07001066 tegra_spi_dump_regs(tspi);
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -07001067 tegra_spi_flush_fifos(tspi);
Sowjanya Komatinenia0265252019-04-04 17:14:03 -07001068 complete(&tspi->xfer_completion);
1069 spin_unlock_irqrestore(&tspi->lock, flags);
Stephen Warrenff2251e2013-11-06 16:31:24 -07001070 reset_control_assert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301071 udelay(2);
Stephen Warrenff2251e2013-11-06 16:31:24 -07001072 reset_control_deassert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301073 return IRQ_HANDLED;
1074 }
1075
1076 if (tspi->cur_direction & DATA_DIR_RX)
1077 tegra_spi_copy_spi_rxbuf_to_client_rxbuf(tspi, t);
1078
1079 if (tspi->cur_direction & DATA_DIR_TX)
1080 tspi->cur_pos = tspi->cur_tx_pos;
1081 else
1082 tspi->cur_pos = tspi->cur_rx_pos;
1083
1084 if (tspi->cur_pos == t->len) {
1085 complete(&tspi->xfer_completion);
1086 goto exit;
1087 }
1088
1089 /* Continue transfer in current message */
1090 total_fifo_words = tegra_spi_calculate_curr_xfer_param(tspi->cur_spi,
1091 tspi, t);
1092 if (total_fifo_words > SPI_FIFO_DEPTH)
1093 err = tegra_spi_start_dma_based_transfer(tspi, t);
1094 else
1095 err = tegra_spi_start_cpu_based_transfer(tspi, t);
1096
1097exit:
1098 spin_unlock_irqrestore(&tspi->lock, flags);
1099 return IRQ_HANDLED;
1100}
1101
1102static irqreturn_t tegra_spi_isr_thread(int irq, void *context_data)
1103{
1104 struct tegra_spi_data *tspi = context_data;
1105
1106 if (!tspi->is_curr_dma_xfer)
1107 return handle_cpu_based_xfer(tspi);
1108 return handle_dma_based_xfer(tspi);
1109}
1110
1111static irqreturn_t tegra_spi_isr(int irq, void *context_data)
1112{
1113 struct tegra_spi_data *tspi = context_data;
1114
1115 tspi->status_reg = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
1116 if (tspi->cur_direction & DATA_DIR_TX)
1117 tspi->tx_status = tspi->status_reg &
1118 (SPI_TX_FIFO_UNF | SPI_TX_FIFO_OVF);
1119
1120 if (tspi->cur_direction & DATA_DIR_RX)
1121 tspi->rx_status = tspi->status_reg &
1122 (SPI_RX_FIFO_OVF | SPI_RX_FIFO_UNF);
1123 tegra_spi_clear_status(tspi);
1124
1125 return IRQ_WAKE_THREAD;
1126}
1127
Jingoo Han0ac83f32014-05-07 16:51:02 +09001128static const struct of_device_id tegra_spi_of_match[] = {
Laxman Dewanganf333a332013-02-22 18:07:39 +05301129 { .compatible = "nvidia,tegra114-spi", },
1130 {}
1131};
1132MODULE_DEVICE_TABLE(of, tegra_spi_of_match);
1133
1134static int tegra_spi_probe(struct platform_device *pdev)
1135{
1136 struct spi_master *master;
1137 struct tegra_spi_data *tspi;
1138 struct resource *r;
1139 int ret, spi_irq;
Sowjanya Komatinenid9088962019-04-04 17:14:06 -07001140 int bus_num;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301141
1142 master = spi_alloc_master(&pdev->dev, sizeof(*tspi));
1143 if (!master) {
1144 dev_err(&pdev->dev, "master allocation failed\n");
1145 return -ENOMEM;
1146 }
Jingoo Han24b5a822013-05-23 19:20:40 +09001147 platform_set_drvdata(pdev, master);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301148 tspi = spi_master_get_devdata(master);
1149
Axel Lin383840d2014-02-10 21:48:16 +08001150 if (of_property_read_u32(pdev->dev.of_node, "spi-max-frequency",
1151 &master->max_speed_hz))
1152 master->max_speed_hz = 25000000; /* 25MHz */
Laxman Dewanganf333a332013-02-22 18:07:39 +05301153
1154 /* the spi->mode bits understood by this driver: */
Sowjanya Komatineni2b17a3c2019-03-26 22:56:33 -07001155 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_LSB_FIRST;
Sowjanya Komatinenif0a0bc92019-04-04 17:14:05 -07001156 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301157 master->setup = tegra_spi_setup;
1158 master->transfer_one_message = tegra_spi_transfer_one_message;
1159 master->num_chipselect = MAX_CHIP_SELECT;
Mark Brown612aa5c2013-07-28 15:37:31 +01001160 master->auto_runtime_pm = true;
Sowjanya Komatinenid9088962019-04-04 17:14:06 -07001161 bus_num = of_alias_get_id(pdev->dev.of_node, "spi");
1162 if (bus_num >= 0)
1163 master->bus_num = bus_num;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301164
1165 tspi->master = master;
1166 tspi->dev = &pdev->dev;
1167 spin_lock_init(&tspi->lock);
1168
1169 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301170 tspi->base = devm_ioremap_resource(&pdev->dev, r);
1171 if (IS_ERR(tspi->base)) {
1172 ret = PTR_ERR(tspi->base);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301173 goto exit_free_master;
1174 }
Laurent Navet5f7f54b2013-05-14 12:07:12 +02001175 tspi->phys = r->start;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301176
1177 spi_irq = platform_get_irq(pdev, 0);
1178 tspi->irq = spi_irq;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301179
1180 tspi->clk = devm_clk_get(&pdev->dev, "spi");
1181 if (IS_ERR(tspi->clk)) {
1182 dev_err(&pdev->dev, "can not get clock\n");
1183 ret = PTR_ERR(tspi->clk);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001184 goto exit_free_master;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301185 }
1186
Philipp Zabeld006edb2017-07-19 17:26:23 +02001187 tspi->rst = devm_reset_control_get_exclusive(&pdev->dev, "spi");
Stephen Warrenff2251e2013-11-06 16:31:24 -07001188 if (IS_ERR(tspi->rst)) {
1189 dev_err(&pdev->dev, "can not get reset\n");
1190 ret = PTR_ERR(tspi->rst);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001191 goto exit_free_master;
Stephen Warrenff2251e2013-11-06 16:31:24 -07001192 }
1193
Laxman Dewanganf333a332013-02-22 18:07:39 +05301194 tspi->max_buf_size = SPI_FIFO_DEPTH << 2;
1195 tspi->dma_buf_size = DEFAULT_SPI_DMA_BUF_LEN;
1196
Stephen Warrena915d152013-11-11 13:13:47 -07001197 ret = tegra_spi_init_dma_param(tspi, true);
1198 if (ret < 0)
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001199 goto exit_free_master;
Stephen Warrena915d152013-11-11 13:13:47 -07001200 ret = tegra_spi_init_dma_param(tspi, false);
1201 if (ret < 0)
1202 goto exit_rx_dma_free;
1203 tspi->max_buf_size = tspi->dma_buf_size;
1204 init_completion(&tspi->tx_dma_complete);
1205 init_completion(&tspi->rx_dma_complete);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301206
1207 init_completion(&tspi->xfer_completion);
1208
1209 pm_runtime_enable(&pdev->dev);
1210 if (!pm_runtime_enabled(&pdev->dev)) {
1211 ret = tegra_spi_runtime_resume(&pdev->dev);
1212 if (ret)
1213 goto exit_pm_disable;
1214 }
1215
1216 ret = pm_runtime_get_sync(&pdev->dev);
1217 if (ret < 0) {
1218 dev_err(&pdev->dev, "pm runtime get failed, e = %d\n", ret);
1219 goto exit_pm_disable;
1220 }
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001221
1222 reset_control_assert(tspi->rst);
1223 udelay(2);
1224 reset_control_deassert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301225 tspi->def_command1_reg = SPI_M_S;
1226 tegra_spi_writel(tspi, tspi->def_command1_reg, SPI_COMMAND1);
1227 pm_runtime_put(&pdev->dev);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001228 ret = request_threaded_irq(tspi->irq, tegra_spi_isr,
1229 tegra_spi_isr_thread, IRQF_ONESHOT,
1230 dev_name(&pdev->dev), tspi);
1231 if (ret < 0) {
1232 dev_err(&pdev->dev, "Failed to register ISR for IRQ %d\n",
1233 tspi->irq);
1234 goto exit_pm_disable;
1235 }
Laxman Dewanganf333a332013-02-22 18:07:39 +05301236
1237 master->dev.of_node = pdev->dev.of_node;
Jingoo Han5c809642013-09-24 13:49:24 +09001238 ret = devm_spi_register_master(&pdev->dev, master);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301239 if (ret < 0) {
1240 dev_err(&pdev->dev, "can not register to master err %d\n", ret);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001241 goto exit_free_irq;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301242 }
1243 return ret;
1244
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001245exit_free_irq:
1246 free_irq(spi_irq, tspi);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301247exit_pm_disable:
1248 pm_runtime_disable(&pdev->dev);
1249 if (!pm_runtime_status_suspended(&pdev->dev))
1250 tegra_spi_runtime_suspend(&pdev->dev);
1251 tegra_spi_deinit_dma_param(tspi, false);
1252exit_rx_dma_free:
1253 tegra_spi_deinit_dma_param(tspi, true);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301254exit_free_master:
1255 spi_master_put(master);
1256 return ret;
1257}
1258
1259static int tegra_spi_remove(struct platform_device *pdev)
1260{
Jingoo Han24b5a822013-05-23 19:20:40 +09001261 struct spi_master *master = platform_get_drvdata(pdev);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301262 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1263
1264 free_irq(tspi->irq, tspi);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301265
1266 if (tspi->tx_dma_chan)
1267 tegra_spi_deinit_dma_param(tspi, false);
1268
1269 if (tspi->rx_dma_chan)
1270 tegra_spi_deinit_dma_param(tspi, true);
1271
1272 pm_runtime_disable(&pdev->dev);
1273 if (!pm_runtime_status_suspended(&pdev->dev))
1274 tegra_spi_runtime_suspend(&pdev->dev);
1275
1276 return 0;
1277}
1278
1279#ifdef CONFIG_PM_SLEEP
1280static int tegra_spi_suspend(struct device *dev)
1281{
1282 struct spi_master *master = dev_get_drvdata(dev);
1283
1284 return spi_master_suspend(master);
1285}
1286
1287static int tegra_spi_resume(struct device *dev)
1288{
1289 struct spi_master *master = dev_get_drvdata(dev);
1290 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1291 int ret;
1292
1293 ret = pm_runtime_get_sync(dev);
1294 if (ret < 0) {
1295 dev_err(dev, "pm runtime failed, e = %d\n", ret);
1296 return ret;
1297 }
1298 tegra_spi_writel(tspi, tspi->command1_reg, SPI_COMMAND1);
1299 pm_runtime_put(dev);
1300
1301 return spi_master_resume(master);
1302}
1303#endif
1304
1305static int tegra_spi_runtime_suspend(struct device *dev)
1306{
1307 struct spi_master *master = dev_get_drvdata(dev);
1308 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1309
1310 /* Flush all write which are in PPSB queue by reading back */
1311 tegra_spi_readl(tspi, SPI_COMMAND1);
1312
1313 clk_disable_unprepare(tspi->clk);
1314 return 0;
1315}
1316
1317static int tegra_spi_runtime_resume(struct device *dev)
1318{
1319 struct spi_master *master = dev_get_drvdata(dev);
1320 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1321 int ret;
1322
1323 ret = clk_prepare_enable(tspi->clk);
1324 if (ret < 0) {
1325 dev_err(tspi->dev, "clk_prepare failed: %d\n", ret);
1326 return ret;
1327 }
1328 return 0;
1329}
1330
1331static const struct dev_pm_ops tegra_spi_pm_ops = {
1332 SET_RUNTIME_PM_OPS(tegra_spi_runtime_suspend,
1333 tegra_spi_runtime_resume, NULL)
1334 SET_SYSTEM_SLEEP_PM_OPS(tegra_spi_suspend, tegra_spi_resume)
1335};
1336static struct platform_driver tegra_spi_driver = {
1337 .driver = {
1338 .name = "spi-tegra114",
Laxman Dewanganf333a332013-02-22 18:07:39 +05301339 .pm = &tegra_spi_pm_ops,
1340 .of_match_table = tegra_spi_of_match,
1341 },
1342 .probe = tegra_spi_probe,
1343 .remove = tegra_spi_remove,
1344};
1345module_platform_driver(tegra_spi_driver);
1346
1347MODULE_ALIAS("platform:spi-tegra114");
1348MODULE_DESCRIPTION("NVIDIA Tegra114 SPI Controller Driver");
1349MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
1350MODULE_LICENSE("GPL v2");