blob: 0cb0932d32fd36bd5c8c41f34e6f3d0aa6c44977 [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
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -0700152#define SPI_INTR_MASK 0x18c
153#define SPI_INTR_ALL_MASK (0x1fUL << 25)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530154#define MAX_CHIP_SELECT 4
155#define SPI_FIFO_DEPTH 64
156#define DATA_DIR_TX (1 << 0)
157#define DATA_DIR_RX (1 << 1)
158
159#define SPI_DMA_TIMEOUT (msecs_to_jiffies(1000))
160#define DEFAULT_SPI_DMA_BUF_LEN (16*1024)
161#define TX_FIFO_EMPTY_COUNT_MAX SPI_TX_FIFO_EMPTY_COUNT(0x40)
162#define RX_FIFO_FULL_COUNT_ZERO SPI_RX_FIFO_FULL_COUNT(0)
163#define MAX_HOLD_CYCLES 16
164#define SPI_DEFAULT_SPEED 25000000
165
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -0700166struct tegra_spi_soc_data {
167 bool has_intr_mask_reg;
168};
169
Laxman Dewanganf333a332013-02-22 18:07:39 +0530170struct tegra_spi_data {
171 struct device *dev;
172 struct spi_master *master;
173 spinlock_t lock;
174
175 struct clk *clk;
Stephen Warrenff2251e2013-11-06 16:31:24 -0700176 struct reset_control *rst;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530177 void __iomem *base;
178 phys_addr_t phys;
179 unsigned irq;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530180 u32 cur_speed;
181
182 struct spi_device *cur_spi;
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400183 struct spi_device *cs_control;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530184 unsigned cur_pos;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530185 unsigned words_per_32bit;
186 unsigned bytes_per_word;
187 unsigned curr_dma_words;
188 unsigned cur_direction;
189
190 unsigned cur_rx_pos;
191 unsigned cur_tx_pos;
192
193 unsigned dma_buf_size;
194 unsigned max_buf_size;
195 bool is_curr_dma_xfer;
Sowjanya Komatineni1bf9f3c2019-05-13 22:03:53 -0700196 bool use_hw_based_cs;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530197
198 struct completion rx_dma_complete;
199 struct completion tx_dma_complete;
200
201 u32 tx_status;
202 u32 rx_status;
203 u32 status_reg;
204 bool is_packed;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530205
206 u32 command1_reg;
207 u32 dma_control_reg;
208 u32 def_command1_reg;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530209
210 struct completion xfer_completion;
211 struct spi_transfer *curr_xfer;
212 struct dma_chan *rx_dma_chan;
213 u32 *rx_dma_buf;
214 dma_addr_t rx_dma_phys;
215 struct dma_async_tx_descriptor *rx_dma_desc;
216
217 struct dma_chan *tx_dma_chan;
218 u32 *tx_dma_buf;
219 dma_addr_t tx_dma_phys;
220 struct dma_async_tx_descriptor *tx_dma_desc;
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -0700221 const struct tegra_spi_soc_data *soc_data;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530222};
223
224static int tegra_spi_runtime_suspend(struct device *dev);
225static int tegra_spi_runtime_resume(struct device *dev);
226
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100227static inline u32 tegra_spi_readl(struct tegra_spi_data *tspi,
Laxman Dewanganf333a332013-02-22 18:07:39 +0530228 unsigned long reg)
229{
230 return readl(tspi->base + reg);
231}
232
233static inline void tegra_spi_writel(struct tegra_spi_data *tspi,
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100234 u32 val, unsigned long reg)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530235{
236 writel(val, tspi->base + reg);
237
238 /* Read back register to make sure that register writes completed */
239 if (reg != SPI_TX_FIFO)
240 readl(tspi->base + SPI_COMMAND1);
241}
242
243static void tegra_spi_clear_status(struct tegra_spi_data *tspi)
244{
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100245 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530246
247 /* Write 1 to clear status register */
248 val = tegra_spi_readl(tspi, SPI_TRANS_STATUS);
249 tegra_spi_writel(tspi, val, SPI_TRANS_STATUS);
250
251 /* Clear fifo status error if any */
252 val = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
253 if (val & SPI_ERR)
254 tegra_spi_writel(tspi, SPI_ERR | SPI_FIFO_ERROR,
255 SPI_FIFO_STATUS);
256}
257
258static unsigned tegra_spi_calculate_curr_xfer_param(
259 struct spi_device *spi, struct tegra_spi_data *tspi,
260 struct spi_transfer *t)
261{
262 unsigned remain_len = t->len - tspi->cur_pos;
263 unsigned max_word;
264 unsigned bits_per_word = t->bits_per_word;
265 unsigned max_len;
266 unsigned total_fifo_words;
267
Axel Line91d2352013-08-30 11:00:23 +0800268 tspi->bytes_per_word = DIV_ROUND_UP(bits_per_word, 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530269
Sowjanya Komatineni76457eea2019-04-04 17:14:01 -0700270 if ((bits_per_word == 8 || bits_per_word == 16 ||
271 bits_per_word == 32) && t->len > 3) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530272 tspi->is_packed = 1;
273 tspi->words_per_32bit = 32/bits_per_word;
274 } else {
275 tspi->is_packed = 0;
276 tspi->words_per_32bit = 1;
277 }
278
279 if (tspi->is_packed) {
280 max_len = min(remain_len, tspi->max_buf_size);
281 tspi->curr_dma_words = max_len/tspi->bytes_per_word;
282 total_fifo_words = (max_len + 3) / 4;
283 } else {
284 max_word = (remain_len - 1) / tspi->bytes_per_word + 1;
285 max_word = min(max_word, tspi->max_buf_size/4);
286 tspi->curr_dma_words = max_word;
287 total_fifo_words = max_word;
288 }
289 return total_fifo_words;
290}
291
292static unsigned tegra_spi_fill_tx_fifo_from_client_txbuf(
293 struct tegra_spi_data *tspi, struct spi_transfer *t)
294{
295 unsigned nbytes;
296 unsigned tx_empty_count;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100297 u32 fifo_status;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530298 unsigned max_n_32bit;
299 unsigned i, count;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530300 unsigned int written_words;
301 unsigned fifo_words_left;
302 u8 *tx_buf = (u8 *)t->tx_buf + tspi->cur_tx_pos;
303
304 fifo_status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
305 tx_empty_count = SPI_TX_FIFO_EMPTY_COUNT(fifo_status);
306
307 if (tspi->is_packed) {
308 fifo_words_left = tx_empty_count * tspi->words_per_32bit;
309 written_words = min(fifo_words_left, tspi->curr_dma_words);
310 nbytes = written_words * tspi->bytes_per_word;
311 max_n_32bit = DIV_ROUND_UP(nbytes, 4);
312 for (count = 0; count < max_n_32bit; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100313 u32 x = 0;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900314
Laxman Dewanganf333a332013-02-22 18:07:39 +0530315 for (i = 0; (i < 4) && nbytes; i++, nbytes--)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100316 x |= (u32)(*tx_buf++) << (i * 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530317 tegra_spi_writel(tspi, x, SPI_TX_FIFO);
318 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700319
320 tspi->cur_tx_pos += written_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530321 } else {
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700322 unsigned int write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530323 max_n_32bit = min(tspi->curr_dma_words, tx_empty_count);
324 written_words = max_n_32bit;
325 nbytes = written_words * tspi->bytes_per_word;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700326 if (nbytes > t->len - tspi->cur_pos)
327 nbytes = t->len - tspi->cur_pos;
328 write_bytes = nbytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530329 for (count = 0; count < max_n_32bit; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100330 u32 x = 0;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900331
Laxman Dewanganf333a332013-02-22 18:07:39 +0530332 for (i = 0; nbytes && (i < tspi->bytes_per_word);
333 i++, nbytes--)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100334 x |= (u32)(*tx_buf++) << (i * 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530335 tegra_spi_writel(tspi, x, SPI_TX_FIFO);
336 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700337
338 tspi->cur_tx_pos += write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530339 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700340
Laxman Dewanganf333a332013-02-22 18:07:39 +0530341 return written_words;
342}
343
344static unsigned int tegra_spi_read_rx_fifo_to_client_rxbuf(
345 struct tegra_spi_data *tspi, struct spi_transfer *t)
346{
347 unsigned rx_full_count;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100348 u32 fifo_status;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530349 unsigned i, count;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530350 unsigned int read_words = 0;
351 unsigned len;
352 u8 *rx_buf = (u8 *)t->rx_buf + tspi->cur_rx_pos;
353
354 fifo_status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
355 rx_full_count = SPI_RX_FIFO_FULL_COUNT(fifo_status);
356 if (tspi->is_packed) {
357 len = tspi->curr_dma_words * tspi->bytes_per_word;
358 for (count = 0; count < rx_full_count; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100359 u32 x = tegra_spi_readl(tspi, SPI_RX_FIFO);
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900360
Laxman Dewanganf333a332013-02-22 18:07:39 +0530361 for (i = 0; len && (i < 4); i++, len--)
362 *rx_buf++ = (x >> i*8) & 0xFF;
363 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530364 read_words += tspi->curr_dma_words;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700365 tspi->cur_rx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530366 } else {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100367 u32 rx_mask = ((u32)1 << t->bits_per_word) - 1;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700368 u8 bytes_per_word = tspi->bytes_per_word;
369 unsigned int read_bytes;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900370
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700371 len = rx_full_count * bytes_per_word;
372 if (len > t->len - tspi->cur_pos)
373 len = t->len - tspi->cur_pos;
374 read_bytes = len;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530375 for (count = 0; count < rx_full_count; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100376 u32 x = tegra_spi_readl(tspi, SPI_RX_FIFO) & rx_mask;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900377
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700378 for (i = 0; len && (i < bytes_per_word); i++, len--)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530379 *rx_buf++ = (x >> (i*8)) & 0xFF;
380 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530381 read_words += rx_full_count;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700382 tspi->cur_rx_pos += read_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530383 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700384
Laxman Dewanganf333a332013-02-22 18:07:39 +0530385 return read_words;
386}
387
388static void tegra_spi_copy_client_txbuf_to_spi_txbuf(
389 struct tegra_spi_data *tspi, struct spi_transfer *t)
390{
Laxman Dewanganf333a332013-02-22 18:07:39 +0530391 /* Make the dma buffer to read by cpu */
392 dma_sync_single_for_cpu(tspi->dev, tspi->tx_dma_phys,
393 tspi->dma_buf_size, DMA_TO_DEVICE);
394
395 if (tspi->is_packed) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100396 unsigned len = tspi->curr_dma_words * tspi->bytes_per_word;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900397
Laxman Dewanganf333a332013-02-22 18:07:39 +0530398 memcpy(tspi->tx_dma_buf, t->tx_buf + tspi->cur_pos, len);
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700399 tspi->cur_tx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530400 } else {
401 unsigned int i;
402 unsigned int count;
403 u8 *tx_buf = (u8 *)t->tx_buf + tspi->cur_tx_pos;
404 unsigned consume = tspi->curr_dma_words * tspi->bytes_per_word;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700405 unsigned int write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530406
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700407 if (consume > t->len - tspi->cur_pos)
408 consume = t->len - tspi->cur_pos;
409 write_bytes = consume;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530410 for (count = 0; count < tspi->curr_dma_words; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100411 u32 x = 0;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900412
Laxman Dewanganf333a332013-02-22 18:07:39 +0530413 for (i = 0; consume && (i < tspi->bytes_per_word);
414 i++, consume--)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100415 x |= (u32)(*tx_buf++) << (i * 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530416 tspi->tx_dma_buf[count] = x;
417 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700418
419 tspi->cur_tx_pos += write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530420 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530421
422 /* Make the dma buffer to read by dma */
423 dma_sync_single_for_device(tspi->dev, tspi->tx_dma_phys,
424 tspi->dma_buf_size, DMA_TO_DEVICE);
425}
426
427static void tegra_spi_copy_spi_rxbuf_to_client_rxbuf(
428 struct tegra_spi_data *tspi, struct spi_transfer *t)
429{
Laxman Dewanganf333a332013-02-22 18:07:39 +0530430 /* Make the dma buffer to read by cpu */
431 dma_sync_single_for_cpu(tspi->dev, tspi->rx_dma_phys,
432 tspi->dma_buf_size, DMA_FROM_DEVICE);
433
434 if (tspi->is_packed) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100435 unsigned len = tspi->curr_dma_words * tspi->bytes_per_word;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900436
Laxman Dewanganf333a332013-02-22 18:07:39 +0530437 memcpy(t->rx_buf + tspi->cur_rx_pos, tspi->rx_dma_buf, len);
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700438 tspi->cur_rx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530439 } else {
440 unsigned int i;
441 unsigned int count;
442 unsigned char *rx_buf = t->rx_buf + tspi->cur_rx_pos;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100443 u32 rx_mask = ((u32)1 << t->bits_per_word) - 1;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700444 unsigned consume = tspi->curr_dma_words * tspi->bytes_per_word;
445 unsigned int read_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530446
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700447 if (consume > t->len - tspi->cur_pos)
448 consume = t->len - tspi->cur_pos;
449 read_bytes = consume;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530450 for (count = 0; count < tspi->curr_dma_words; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100451 u32 x = tspi->rx_dma_buf[count] & rx_mask;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900452
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700453 for (i = 0; consume && (i < tspi->bytes_per_word);
454 i++, consume--)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530455 *rx_buf++ = (x >> (i*8)) & 0xFF;
456 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700457
458 tspi->cur_rx_pos += read_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530459 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530460
461 /* Make the dma buffer to read by dma */
462 dma_sync_single_for_device(tspi->dev, tspi->rx_dma_phys,
463 tspi->dma_buf_size, DMA_FROM_DEVICE);
464}
465
466static void tegra_spi_dma_complete(void *args)
467{
468 struct completion *dma_complete = args;
469
470 complete(dma_complete);
471}
472
473static int tegra_spi_start_tx_dma(struct tegra_spi_data *tspi, int len)
474{
Wolfram Sang16735d02013-11-14 14:32:02 -0800475 reinit_completion(&tspi->tx_dma_complete);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530476 tspi->tx_dma_desc = dmaengine_prep_slave_single(tspi->tx_dma_chan,
477 tspi->tx_dma_phys, len, DMA_MEM_TO_DEV,
478 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
479 if (!tspi->tx_dma_desc) {
480 dev_err(tspi->dev, "Not able to get desc for Tx\n");
481 return -EIO;
482 }
483
484 tspi->tx_dma_desc->callback = tegra_spi_dma_complete;
485 tspi->tx_dma_desc->callback_param = &tspi->tx_dma_complete;
486
487 dmaengine_submit(tspi->tx_dma_desc);
488 dma_async_issue_pending(tspi->tx_dma_chan);
489 return 0;
490}
491
492static int tegra_spi_start_rx_dma(struct tegra_spi_data *tspi, int len)
493{
Wolfram Sang16735d02013-11-14 14:32:02 -0800494 reinit_completion(&tspi->rx_dma_complete);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530495 tspi->rx_dma_desc = dmaengine_prep_slave_single(tspi->rx_dma_chan,
496 tspi->rx_dma_phys, len, DMA_DEV_TO_MEM,
497 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
498 if (!tspi->rx_dma_desc) {
499 dev_err(tspi->dev, "Not able to get desc for Rx\n");
500 return -EIO;
501 }
502
503 tspi->rx_dma_desc->callback = tegra_spi_dma_complete;
504 tspi->rx_dma_desc->callback_param = &tspi->rx_dma_complete;
505
506 dmaengine_submit(tspi->rx_dma_desc);
507 dma_async_issue_pending(tspi->rx_dma_chan);
508 return 0;
509}
510
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -0700511static int tegra_spi_flush_fifos(struct tegra_spi_data *tspi)
512{
513 unsigned long timeout = jiffies + HZ;
514 u32 status;
515
516 status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
517 if ((status & SPI_FIFO_EMPTY) != SPI_FIFO_EMPTY) {
518 status |= SPI_RX_FIFO_FLUSH | SPI_TX_FIFO_FLUSH;
519 tegra_spi_writel(tspi, status, SPI_FIFO_STATUS);
520 while ((status & SPI_FIFO_EMPTY) != SPI_FIFO_EMPTY) {
521 status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
522 if (time_after(jiffies, timeout)) {
523 dev_err(tspi->dev,
524 "timeout waiting for fifo flush\n");
525 return -EIO;
526 }
527
528 udelay(1);
529 }
530 }
531
532 return 0;
533}
534
Laxman Dewanganf333a332013-02-22 18:07:39 +0530535static int tegra_spi_start_dma_based_transfer(
536 struct tegra_spi_data *tspi, struct spi_transfer *t)
537{
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100538 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530539 unsigned int len;
540 int ret = 0;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700541 u8 dma_burst;
542 struct dma_slave_config dma_sconfig = {0};
Laxman Dewanganf333a332013-02-22 18:07:39 +0530543
544 val = SPI_DMA_BLK_SET(tspi->curr_dma_words - 1);
545 tegra_spi_writel(tspi, val, SPI_DMA_BLK);
546
547 if (tspi->is_packed)
548 len = DIV_ROUND_UP(tspi->curr_dma_words * tspi->bytes_per_word,
549 4) * 4;
550 else
551 len = tspi->curr_dma_words * 4;
552
553 /* Set attention level based on length of transfer */
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700554 if (len & 0xF) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530555 val |= SPI_TX_TRIG_1 | SPI_RX_TRIG_1;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700556 dma_burst = 1;
557 } else if (((len) >> 4) & 0x1) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530558 val |= SPI_TX_TRIG_4 | SPI_RX_TRIG_4;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700559 dma_burst = 4;
560 } else {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530561 val |= SPI_TX_TRIG_8 | SPI_RX_TRIG_8;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700562 dma_burst = 8;
563 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530564
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -0700565 if (!tspi->soc_data->has_intr_mask_reg) {
566 if (tspi->cur_direction & DATA_DIR_TX)
567 val |= SPI_IE_TX;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530568
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -0700569 if (tspi->cur_direction & DATA_DIR_RX)
570 val |= SPI_IE_RX;
571 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530572
573 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
574 tspi->dma_control_reg = val;
575
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700576 dma_sconfig.device_fc = true;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530577 if (tspi->cur_direction & DATA_DIR_TX) {
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700578 dma_sconfig.dst_addr = tspi->phys + SPI_TX_FIFO;
579 dma_sconfig.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
580 dma_sconfig.dst_maxburst = dma_burst;
581 ret = dmaengine_slave_config(tspi->tx_dma_chan, &dma_sconfig);
582 if (ret < 0) {
583 dev_err(tspi->dev,
584 "DMA slave config failed: %d\n", ret);
585 return ret;
586 }
587
Laxman Dewanganf333a332013-02-22 18:07:39 +0530588 tegra_spi_copy_client_txbuf_to_spi_txbuf(tspi, t);
589 ret = tegra_spi_start_tx_dma(tspi, len);
590 if (ret < 0) {
591 dev_err(tspi->dev,
592 "Starting tx dma failed, err %d\n", ret);
593 return ret;
594 }
595 }
596
597 if (tspi->cur_direction & DATA_DIR_RX) {
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700598 dma_sconfig.src_addr = tspi->phys + SPI_RX_FIFO;
599 dma_sconfig.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
600 dma_sconfig.src_maxburst = dma_burst;
601 ret = dmaengine_slave_config(tspi->rx_dma_chan, &dma_sconfig);
602 if (ret < 0) {
603 dev_err(tspi->dev,
604 "DMA slave config failed: %d\n", ret);
605 return ret;
606 }
607
Laxman Dewanganf333a332013-02-22 18:07:39 +0530608 /* Make the dma buffer to read by dma */
609 dma_sync_single_for_device(tspi->dev, tspi->rx_dma_phys,
610 tspi->dma_buf_size, DMA_FROM_DEVICE);
611
612 ret = tegra_spi_start_rx_dma(tspi, len);
613 if (ret < 0) {
614 dev_err(tspi->dev,
615 "Starting rx dma failed, err %d\n", ret);
616 if (tspi->cur_direction & DATA_DIR_TX)
617 dmaengine_terminate_all(tspi->tx_dma_chan);
618 return ret;
619 }
620 }
621 tspi->is_curr_dma_xfer = true;
622 tspi->dma_control_reg = val;
623
624 val |= SPI_DMA_EN;
625 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
626 return ret;
627}
628
629static int tegra_spi_start_cpu_based_transfer(
630 struct tegra_spi_data *tspi, struct spi_transfer *t)
631{
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100632 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530633 unsigned cur_words;
634
635 if (tspi->cur_direction & DATA_DIR_TX)
636 cur_words = tegra_spi_fill_tx_fifo_from_client_txbuf(tspi, t);
637 else
638 cur_words = tspi->curr_dma_words;
639
640 val = SPI_DMA_BLK_SET(cur_words - 1);
641 tegra_spi_writel(tspi, val, SPI_DMA_BLK);
642
643 val = 0;
644 if (tspi->cur_direction & DATA_DIR_TX)
645 val |= SPI_IE_TX;
646
647 if (tspi->cur_direction & DATA_DIR_RX)
648 val |= SPI_IE_RX;
649
650 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
651 tspi->dma_control_reg = val;
652
653 tspi->is_curr_dma_xfer = false;
654
Sowjanya Komatinenicc1b69f2019-04-15 14:30:26 -0700655 val = tspi->command1_reg;
656 val |= SPI_PIO;
657 tegra_spi_writel(tspi, val, SPI_COMMAND1);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530658 return 0;
659}
660
661static int tegra_spi_init_dma_param(struct tegra_spi_data *tspi,
662 bool dma_to_memory)
663{
664 struct dma_chan *dma_chan;
665 u32 *dma_buf;
666 dma_addr_t dma_phys;
667 int ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530668
Stephen Warrena915d152013-11-11 13:13:47 -0700669 dma_chan = dma_request_slave_channel_reason(tspi->dev,
670 dma_to_memory ? "rx" : "tx");
671 if (IS_ERR(dma_chan)) {
672 ret = PTR_ERR(dma_chan);
673 if (ret != -EPROBE_DEFER)
674 dev_err(tspi->dev,
675 "Dma channel is not available: %d\n", ret);
676 return ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530677 }
678
679 dma_buf = dma_alloc_coherent(tspi->dev, tspi->dma_buf_size,
680 &dma_phys, GFP_KERNEL);
681 if (!dma_buf) {
682 dev_err(tspi->dev, " Not able to allocate the dma buffer\n");
683 dma_release_channel(dma_chan);
684 return -ENOMEM;
685 }
686
Laxman Dewanganf333a332013-02-22 18:07:39 +0530687 if (dma_to_memory) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530688 tspi->rx_dma_chan = dma_chan;
689 tspi->rx_dma_buf = dma_buf;
690 tspi->rx_dma_phys = dma_phys;
691 } else {
692 tspi->tx_dma_chan = dma_chan;
693 tspi->tx_dma_buf = dma_buf;
694 tspi->tx_dma_phys = dma_phys;
695 }
696 return 0;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530697}
698
699static void tegra_spi_deinit_dma_param(struct tegra_spi_data *tspi,
700 bool dma_to_memory)
701{
702 u32 *dma_buf;
703 dma_addr_t dma_phys;
704 struct dma_chan *dma_chan;
705
706 if (dma_to_memory) {
707 dma_buf = tspi->rx_dma_buf;
708 dma_chan = tspi->rx_dma_chan;
709 dma_phys = tspi->rx_dma_phys;
710 tspi->rx_dma_chan = NULL;
711 tspi->rx_dma_buf = NULL;
712 } else {
713 dma_buf = tspi->tx_dma_buf;
714 dma_chan = tspi->tx_dma_chan;
715 dma_phys = tspi->tx_dma_phys;
716 tspi->tx_dma_buf = NULL;
717 tspi->tx_dma_chan = NULL;
718 }
719 if (!dma_chan)
720 return;
721
722 dma_free_coherent(tspi->dev, tspi->dma_buf_size, dma_buf, dma_phys);
723 dma_release_channel(dma_chan);
724}
725
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100726static u32 tegra_spi_setup_transfer_one(struct spi_device *spi,
Sowjanya Komatineni1bf9f3c2019-05-13 22:03:53 -0700727 struct spi_transfer *t,
728 bool is_first_of_msg,
729 bool is_single_xfer)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530730{
731 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
732 u32 speed = t->speed_hz;
733 u8 bits_per_word = t->bits_per_word;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100734 u32 command1;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530735 int req_mode;
736
737 if (speed != tspi->cur_speed) {
738 clk_set_rate(tspi->clk, speed);
739 tspi->cur_speed = speed;
740 }
741
742 tspi->cur_spi = spi;
743 tspi->cur_pos = 0;
744 tspi->cur_rx_pos = 0;
745 tspi->cur_tx_pos = 0;
746 tspi->curr_xfer = t;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530747
748 if (is_first_of_msg) {
749 tegra_spi_clear_status(tspi);
750
751 command1 = tspi->def_command1_reg;
752 command1 |= SPI_BIT_LENGTH(bits_per_word - 1);
753
754 command1 &= ~SPI_CONTROL_MODE_MASK;
755 req_mode = spi->mode & 0x3;
756 if (req_mode == SPI_MODE_0)
757 command1 |= SPI_CONTROL_MODE_0;
758 else if (req_mode == SPI_MODE_1)
759 command1 |= SPI_CONTROL_MODE_1;
760 else if (req_mode == SPI_MODE_2)
761 command1 |= SPI_CONTROL_MODE_2;
762 else if (req_mode == SPI_MODE_3)
763 command1 |= SPI_CONTROL_MODE_3;
764
Sowjanya Komatineni2b17a3c2019-03-26 22:56:33 -0700765 if (spi->mode & SPI_LSB_FIRST)
766 command1 |= SPI_LSBIT_FE;
767 else
768 command1 &= ~SPI_LSBIT_FE;
769
Sowjanya Komatineni9d199232019-04-04 17:14:08 -0700770 if (spi->mode & SPI_3WIRE)
771 command1 |= SPI_BIDIROE;
772 else
773 command1 &= ~SPI_BIDIROE;
774
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400775 if (tspi->cs_control) {
776 if (tspi->cs_control != spi)
777 tegra_spi_writel(tspi, command1, SPI_COMMAND1);
778 tspi->cs_control = NULL;
779 } else
780 tegra_spi_writel(tspi, command1, SPI_COMMAND1);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530781
Sowjanya Komatineni63c14402019-05-13 22:03:52 -0700782 /* GPIO based chip select control */
783 if (spi->cs_gpiod)
784 gpiod_set_value(spi->cs_gpiod, 1);
785
Sowjanya Komatineni1bf9f3c2019-05-13 22:03:53 -0700786 if (is_single_xfer && !(t->cs_change)) {
787 tspi->use_hw_based_cs = true;
788 command1 &= ~(SPI_CS_SW_HW | SPI_CS_SW_VAL);
789 } else {
790 tspi->use_hw_based_cs = false;
791 command1 |= SPI_CS_SW_HW;
792 if (spi->mode & SPI_CS_HIGH)
793 command1 |= SPI_CS_SW_VAL;
794 else
795 command1 &= ~SPI_CS_SW_VAL;
796 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530797
798 tegra_spi_writel(tspi, 0, SPI_COMMAND2);
799 } else {
800 command1 = tspi->command1_reg;
801 command1 &= ~SPI_BIT_LENGTH(~0);
802 command1 |= SPI_BIT_LENGTH(bits_per_word - 1);
803 }
804
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400805 return command1;
806}
807
808static int tegra_spi_start_transfer_one(struct spi_device *spi,
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100809 struct spi_transfer *t, u32 command1)
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400810{
811 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
812 unsigned total_fifo_words;
813 int ret;
814
815 total_fifo_words = tegra_spi_calculate_curr_xfer_param(spi, tspi, t);
816
Sowjanya Komatineni9877a342019-04-04 17:14:07 -0700817 if (t->rx_nbits == SPI_NBITS_DUAL || t->tx_nbits == SPI_NBITS_DUAL)
818 command1 |= SPI_BOTH_EN_BIT;
819 else
820 command1 &= ~SPI_BOTH_EN_BIT;
821
Laxman Dewanganf333a332013-02-22 18:07:39 +0530822 if (tspi->is_packed)
823 command1 |= SPI_PACKED;
Sowjanya Komatineni7b3d10c2019-03-26 22:56:23 -0700824 else
825 command1 &= ~SPI_PACKED;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530826
827 command1 &= ~(SPI_CS_SEL_MASK | SPI_TX_EN | SPI_RX_EN);
828 tspi->cur_direction = 0;
829 if (t->rx_buf) {
830 command1 |= SPI_RX_EN;
831 tspi->cur_direction |= DATA_DIR_RX;
832 }
833 if (t->tx_buf) {
834 command1 |= SPI_TX_EN;
835 tspi->cur_direction |= DATA_DIR_TX;
836 }
837 command1 |= SPI_CS_SEL(spi->chip_select);
838 tegra_spi_writel(tspi, command1, SPI_COMMAND1);
839 tspi->command1_reg = command1;
840
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100841 dev_dbg(tspi->dev, "The def 0x%x and written 0x%x\n",
842 tspi->def_command1_reg, (unsigned)command1);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530843
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -0700844 ret = tegra_spi_flush_fifos(tspi);
845 if (ret < 0)
846 return ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530847 if (total_fifo_words > SPI_FIFO_DEPTH)
848 ret = tegra_spi_start_dma_based_transfer(tspi, t);
849 else
850 ret = tegra_spi_start_cpu_based_transfer(tspi, t);
851 return ret;
852}
853
854static int tegra_spi_setup(struct spi_device *spi)
855{
856 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100857 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530858 unsigned long flags;
859 int ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530860
861 dev_dbg(&spi->dev, "setup %d bpw, %scpol, %scpha, %dHz\n",
862 spi->bits_per_word,
863 spi->mode & SPI_CPOL ? "" : "~",
864 spi->mode & SPI_CPHA ? "" : "~",
865 spi->max_speed_hz);
866
Laxman Dewanganf333a332013-02-22 18:07:39 +0530867 ret = pm_runtime_get_sync(tspi->dev);
868 if (ret < 0) {
869 dev_err(tspi->dev, "pm runtime failed, e = %d\n", ret);
870 return ret;
871 }
872
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -0700873 if (tspi->soc_data->has_intr_mask_reg) {
874 val = tegra_spi_readl(tspi, SPI_INTR_MASK);
875 val &= ~SPI_INTR_ALL_MASK;
876 tegra_spi_writel(tspi, val, SPI_INTR_MASK);
877 }
878
Laxman Dewanganf333a332013-02-22 18:07:39 +0530879 spin_lock_irqsave(&tspi->lock, flags);
Sowjanya Komatineni63c14402019-05-13 22:03:52 -0700880 /* GPIO based chip select control */
881 if (spi->cs_gpiod)
882 gpiod_set_value(spi->cs_gpiod, 0);
883
Laxman Dewanganf333a332013-02-22 18:07:39 +0530884 val = tspi->def_command1_reg;
885 if (spi->mode & SPI_CS_HIGH)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100886 val &= ~SPI_CS_POL_INACTIVE(spi->chip_select);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530887 else
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100888 val |= SPI_CS_POL_INACTIVE(spi->chip_select);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530889 tspi->def_command1_reg = val;
890 tegra_spi_writel(tspi, tspi->def_command1_reg, SPI_COMMAND1);
891 spin_unlock_irqrestore(&tspi->lock, flags);
892
893 pm_runtime_put(tspi->dev);
894 return 0;
895}
896
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400897static void tegra_spi_transfer_delay(int delay)
898{
899 if (!delay)
900 return;
901
902 if (delay >= 1000)
903 mdelay(delay / 1000);
904
905 udelay(delay % 1000);
906}
907
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -0700908static void tegra_spi_transfer_end(struct spi_device *spi)
909{
910 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
911 int cs_val = (spi->mode & SPI_CS_HIGH) ? 0 : 1;
912
Sowjanya Komatineni63c14402019-05-13 22:03:52 -0700913 /* GPIO based chip select control */
914 if (spi->cs_gpiod)
915 gpiod_set_value(spi->cs_gpiod, 0);
916
Sowjanya Komatineni1bf9f3c2019-05-13 22:03:53 -0700917 if (!tspi->use_hw_based_cs) {
918 if (cs_val)
919 tspi->command1_reg |= SPI_CS_SW_VAL;
920 else
921 tspi->command1_reg &= ~SPI_CS_SW_VAL;
922 tegra_spi_writel(tspi, tspi->command1_reg, SPI_COMMAND1);
923 }
924
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -0700925 tegra_spi_writel(tspi, tspi->def_command1_reg, SPI_COMMAND1);
926}
927
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -0700928static void tegra_spi_dump_regs(struct tegra_spi_data *tspi)
929{
930 dev_dbg(tspi->dev, "============ SPI REGISTER DUMP ============\n");
931 dev_dbg(tspi->dev, "Command1: 0x%08x | Command2: 0x%08x\n",
932 tegra_spi_readl(tspi, SPI_COMMAND1),
933 tegra_spi_readl(tspi, SPI_COMMAND2));
934 dev_dbg(tspi->dev, "DMA_CTL: 0x%08x | DMA_BLK: 0x%08x\n",
935 tegra_spi_readl(tspi, SPI_DMA_CTL),
936 tegra_spi_readl(tspi, SPI_DMA_BLK));
937 dev_dbg(tspi->dev, "TRANS_STAT: 0x%08x | FIFO_STATUS: 0x%08x\n",
938 tegra_spi_readl(tspi, SPI_TRANS_STATUS),
939 tegra_spi_readl(tspi, SPI_FIFO_STATUS));
940}
941
Laxman Dewanganf333a332013-02-22 18:07:39 +0530942static int tegra_spi_transfer_one_message(struct spi_master *master,
943 struct spi_message *msg)
944{
945 bool is_first_msg = true;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530946 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
947 struct spi_transfer *xfer;
948 struct spi_device *spi = msg->spi;
949 int ret;
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400950 bool skip = false;
Sowjanya Komatineni1bf9f3c2019-05-13 22:03:53 -0700951 int single_xfer;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530952
953 msg->status = 0;
954 msg->actual_length = 0;
955
Sowjanya Komatineni1bf9f3c2019-05-13 22:03:53 -0700956 single_xfer = list_is_singular(&msg->transfers);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530957 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100958 u32 cmd1;
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400959
Wolfram Sang16735d02013-11-14 14:32:02 -0800960 reinit_completion(&tspi->xfer_completion);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400961
Sowjanya Komatineni1bf9f3c2019-05-13 22:03:53 -0700962 cmd1 = tegra_spi_setup_transfer_one(spi, xfer, is_first_msg,
963 single_xfer);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400964
965 if (!xfer->len) {
966 ret = 0;
967 skip = true;
968 goto complete_xfer;
969 }
970
971 ret = tegra_spi_start_transfer_one(spi, xfer, cmd1);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530972 if (ret < 0) {
973 dev_err(tspi->dev,
974 "spi can not start transfer, err %d\n", ret);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400975 goto complete_xfer;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530976 }
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400977
Laxman Dewanganf333a332013-02-22 18:07:39 +0530978 is_first_msg = false;
979 ret = wait_for_completion_timeout(&tspi->xfer_completion,
980 SPI_DMA_TIMEOUT);
981 if (WARN_ON(ret == 0)) {
982 dev_err(tspi->dev,
Colin Ian Kingbfca7612017-04-23 18:14:36 +0100983 "spi transfer timeout, err %d\n", ret);
Sowjanya Komatineni32bd1a92019-03-26 22:56:27 -0700984 if (tspi->is_curr_dma_xfer &&
985 (tspi->cur_direction & DATA_DIR_TX))
986 dmaengine_terminate_all(tspi->tx_dma_chan);
987 if (tspi->is_curr_dma_xfer &&
988 (tspi->cur_direction & DATA_DIR_RX))
989 dmaengine_terminate_all(tspi->rx_dma_chan);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530990 ret = -EIO;
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 Komatineni32bd1a92019-03-26 22:56:27 -0700993 reset_control_assert(tspi->rst);
994 udelay(2);
995 reset_control_deassert(tspi->rst);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400996 goto complete_xfer;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530997 }
998
999 if (tspi->tx_status || tspi->rx_status) {
1000 dev_err(tspi->dev, "Error in Transfer\n");
1001 ret = -EIO;
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -07001002 tegra_spi_dump_regs(tspi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -04001003 goto complete_xfer;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301004 }
1005 msg->actual_length += xfer->len;
Rhyland Kleinf4fade12013-09-26 13:01:43 -04001006
1007complete_xfer:
1008 if (ret < 0 || skip) {
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -07001009 tegra_spi_transfer_end(spi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -04001010 tegra_spi_transfer_delay(xfer->delay_usecs);
1011 goto exit;
Axel Lin971e9082014-01-15 14:07:04 +08001012 } else if (list_is_last(&xfer->transfer_list,
1013 &msg->transfers)) {
Rhyland Kleinf4fade12013-09-26 13:01:43 -04001014 if (xfer->cs_change)
1015 tspi->cs_control = spi;
1016 else {
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -07001017 tegra_spi_transfer_end(spi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -04001018 tegra_spi_transfer_delay(xfer->delay_usecs);
1019 }
1020 } else if (xfer->cs_change) {
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -07001021 tegra_spi_transfer_end(spi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -04001022 tegra_spi_transfer_delay(xfer->delay_usecs);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301023 }
Rhyland Kleinf4fade12013-09-26 13:01:43 -04001024
Laxman Dewanganf333a332013-02-22 18:07:39 +05301025 }
1026 ret = 0;
1027exit:
Laxman Dewanganf333a332013-02-22 18:07:39 +05301028 msg->status = ret;
1029 spi_finalize_current_message(master);
1030 return ret;
1031}
1032
1033static irqreturn_t handle_cpu_based_xfer(struct tegra_spi_data *tspi)
1034{
1035 struct spi_transfer *t = tspi->curr_xfer;
1036 unsigned long flags;
1037
1038 spin_lock_irqsave(&tspi->lock, flags);
1039 if (tspi->tx_status || tspi->rx_status) {
1040 dev_err(tspi->dev, "CpuXfer ERROR bit set 0x%x\n",
1041 tspi->status_reg);
1042 dev_err(tspi->dev, "CpuXfer 0x%08x:0x%08x\n",
1043 tspi->command1_reg, tspi->dma_control_reg);
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -07001044 tegra_spi_dump_regs(tspi);
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -07001045 tegra_spi_flush_fifos(tspi);
Sowjanya Komatinenia0265252019-04-04 17:14:03 -07001046 complete(&tspi->xfer_completion);
1047 spin_unlock_irqrestore(&tspi->lock, flags);
Stephen Warrenff2251e2013-11-06 16:31:24 -07001048 reset_control_assert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301049 udelay(2);
Stephen Warrenff2251e2013-11-06 16:31:24 -07001050 reset_control_deassert(tspi->rst);
Sowjanya Komatinenia0265252019-04-04 17:14:03 -07001051 return IRQ_HANDLED;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301052 }
1053
1054 if (tspi->cur_direction & DATA_DIR_RX)
1055 tegra_spi_read_rx_fifo_to_client_rxbuf(tspi, t);
1056
1057 if (tspi->cur_direction & DATA_DIR_TX)
1058 tspi->cur_pos = tspi->cur_tx_pos;
1059 else
1060 tspi->cur_pos = tspi->cur_rx_pos;
1061
1062 if (tspi->cur_pos == t->len) {
1063 complete(&tspi->xfer_completion);
1064 goto exit;
1065 }
1066
1067 tegra_spi_calculate_curr_xfer_param(tspi->cur_spi, tspi, t);
1068 tegra_spi_start_cpu_based_transfer(tspi, t);
1069exit:
1070 spin_unlock_irqrestore(&tspi->lock, flags);
1071 return IRQ_HANDLED;
1072}
1073
1074static irqreturn_t handle_dma_based_xfer(struct tegra_spi_data *tspi)
1075{
1076 struct spi_transfer *t = tspi->curr_xfer;
1077 long wait_status;
1078 int err = 0;
1079 unsigned total_fifo_words;
1080 unsigned long flags;
1081
1082 /* Abort dmas if any error */
1083 if (tspi->cur_direction & DATA_DIR_TX) {
1084 if (tspi->tx_status) {
1085 dmaengine_terminate_all(tspi->tx_dma_chan);
1086 err += 1;
1087 } else {
1088 wait_status = wait_for_completion_interruptible_timeout(
1089 &tspi->tx_dma_complete, SPI_DMA_TIMEOUT);
1090 if (wait_status <= 0) {
1091 dmaengine_terminate_all(tspi->tx_dma_chan);
1092 dev_err(tspi->dev, "TxDma Xfer failed\n");
1093 err += 1;
1094 }
1095 }
1096 }
1097
1098 if (tspi->cur_direction & DATA_DIR_RX) {
1099 if (tspi->rx_status) {
1100 dmaengine_terminate_all(tspi->rx_dma_chan);
1101 err += 2;
1102 } else {
1103 wait_status = wait_for_completion_interruptible_timeout(
1104 &tspi->rx_dma_complete, SPI_DMA_TIMEOUT);
1105 if (wait_status <= 0) {
1106 dmaengine_terminate_all(tspi->rx_dma_chan);
1107 dev_err(tspi->dev, "RxDma Xfer failed\n");
1108 err += 2;
1109 }
1110 }
1111 }
1112
1113 spin_lock_irqsave(&tspi->lock, flags);
1114 if (err) {
1115 dev_err(tspi->dev, "DmaXfer: ERROR bit set 0x%x\n",
1116 tspi->status_reg);
1117 dev_err(tspi->dev, "DmaXfer 0x%08x:0x%08x\n",
1118 tspi->command1_reg, tspi->dma_control_reg);
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -07001119 tegra_spi_dump_regs(tspi);
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -07001120 tegra_spi_flush_fifos(tspi);
Sowjanya Komatinenia0265252019-04-04 17:14:03 -07001121 complete(&tspi->xfer_completion);
1122 spin_unlock_irqrestore(&tspi->lock, flags);
Stephen Warrenff2251e2013-11-06 16:31:24 -07001123 reset_control_assert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301124 udelay(2);
Stephen Warrenff2251e2013-11-06 16:31:24 -07001125 reset_control_deassert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301126 return IRQ_HANDLED;
1127 }
1128
1129 if (tspi->cur_direction & DATA_DIR_RX)
1130 tegra_spi_copy_spi_rxbuf_to_client_rxbuf(tspi, t);
1131
1132 if (tspi->cur_direction & DATA_DIR_TX)
1133 tspi->cur_pos = tspi->cur_tx_pos;
1134 else
1135 tspi->cur_pos = tspi->cur_rx_pos;
1136
1137 if (tspi->cur_pos == t->len) {
1138 complete(&tspi->xfer_completion);
1139 goto exit;
1140 }
1141
1142 /* Continue transfer in current message */
1143 total_fifo_words = tegra_spi_calculate_curr_xfer_param(tspi->cur_spi,
1144 tspi, t);
1145 if (total_fifo_words > SPI_FIFO_DEPTH)
1146 err = tegra_spi_start_dma_based_transfer(tspi, t);
1147 else
1148 err = tegra_spi_start_cpu_based_transfer(tspi, t);
1149
1150exit:
1151 spin_unlock_irqrestore(&tspi->lock, flags);
1152 return IRQ_HANDLED;
1153}
1154
1155static irqreturn_t tegra_spi_isr_thread(int irq, void *context_data)
1156{
1157 struct tegra_spi_data *tspi = context_data;
1158
1159 if (!tspi->is_curr_dma_xfer)
1160 return handle_cpu_based_xfer(tspi);
1161 return handle_dma_based_xfer(tspi);
1162}
1163
1164static irqreturn_t tegra_spi_isr(int irq, void *context_data)
1165{
1166 struct tegra_spi_data *tspi = context_data;
1167
1168 tspi->status_reg = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
1169 if (tspi->cur_direction & DATA_DIR_TX)
1170 tspi->tx_status = tspi->status_reg &
1171 (SPI_TX_FIFO_UNF | SPI_TX_FIFO_OVF);
1172
1173 if (tspi->cur_direction & DATA_DIR_RX)
1174 tspi->rx_status = tspi->status_reg &
1175 (SPI_RX_FIFO_OVF | SPI_RX_FIFO_UNF);
1176 tegra_spi_clear_status(tspi);
1177
1178 return IRQ_WAKE_THREAD;
1179}
1180
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -07001181static struct tegra_spi_soc_data tegra114_spi_soc_data = {
1182 .has_intr_mask_reg = false,
1183};
1184
1185static struct tegra_spi_soc_data tegra124_spi_soc_data = {
1186 .has_intr_mask_reg = false,
1187};
1188
1189static struct tegra_spi_soc_data tegra210_spi_soc_data = {
1190 .has_intr_mask_reg = true,
1191};
1192
Jingoo Han0ac83f32014-05-07 16:51:02 +09001193static const struct of_device_id tegra_spi_of_match[] = {
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -07001194 {
1195 .compatible = "nvidia,tegra114-spi",
1196 .data = &tegra114_spi_soc_data,
1197 }, {
1198 .compatible = "nvidia,tegra124-spi",
1199 .data = &tegra124_spi_soc_data,
1200 }, {
1201 .compatible = "nvidia,tegra210-spi",
1202 .data = &tegra210_spi_soc_data,
1203 },
Laxman Dewanganf333a332013-02-22 18:07:39 +05301204 {}
1205};
1206MODULE_DEVICE_TABLE(of, tegra_spi_of_match);
1207
1208static int tegra_spi_probe(struct platform_device *pdev)
1209{
1210 struct spi_master *master;
1211 struct tegra_spi_data *tspi;
1212 struct resource *r;
1213 int ret, spi_irq;
Sowjanya Komatinenid9088962019-04-04 17:14:06 -07001214 int bus_num;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301215
1216 master = spi_alloc_master(&pdev->dev, sizeof(*tspi));
1217 if (!master) {
1218 dev_err(&pdev->dev, "master allocation failed\n");
1219 return -ENOMEM;
1220 }
Jingoo Han24b5a822013-05-23 19:20:40 +09001221 platform_set_drvdata(pdev, master);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301222 tspi = spi_master_get_devdata(master);
1223
Axel Lin383840d2014-02-10 21:48:16 +08001224 if (of_property_read_u32(pdev->dev.of_node, "spi-max-frequency",
1225 &master->max_speed_hz))
1226 master->max_speed_hz = 25000000; /* 25MHz */
Laxman Dewanganf333a332013-02-22 18:07:39 +05301227
1228 /* the spi->mode bits understood by this driver: */
Sowjanya Komatineni63c14402019-05-13 22:03:52 -07001229 master->use_gpio_descriptors = true;
Sowjanya Komatineni9877a342019-04-04 17:14:07 -07001230 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_LSB_FIRST |
Sowjanya Komatineni9d199232019-04-04 17:14:08 -07001231 SPI_TX_DUAL | SPI_RX_DUAL | SPI_3WIRE;
Sowjanya Komatinenif0a0bc92019-04-04 17:14:05 -07001232 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301233 master->setup = tegra_spi_setup;
1234 master->transfer_one_message = tegra_spi_transfer_one_message;
1235 master->num_chipselect = MAX_CHIP_SELECT;
Mark Brown612aa5c2013-07-28 15:37:31 +01001236 master->auto_runtime_pm = true;
Sowjanya Komatinenid9088962019-04-04 17:14:06 -07001237 bus_num = of_alias_get_id(pdev->dev.of_node, "spi");
1238 if (bus_num >= 0)
1239 master->bus_num = bus_num;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301240
1241 tspi->master = master;
1242 tspi->dev = &pdev->dev;
1243 spin_lock_init(&tspi->lock);
1244
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -07001245 tspi->soc_data = of_device_get_match_data(&pdev->dev);
1246 if (!tspi->soc_data) {
1247 dev_err(&pdev->dev, "unsupported tegra\n");
1248 ret = -ENODEV;
1249 goto exit_free_master;
1250 }
1251
Laxman Dewanganf333a332013-02-22 18:07:39 +05301252 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301253 tspi->base = devm_ioremap_resource(&pdev->dev, r);
1254 if (IS_ERR(tspi->base)) {
1255 ret = PTR_ERR(tspi->base);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301256 goto exit_free_master;
1257 }
Laurent Navet5f7f54b2013-05-14 12:07:12 +02001258 tspi->phys = r->start;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301259
1260 spi_irq = platform_get_irq(pdev, 0);
1261 tspi->irq = spi_irq;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301262
1263 tspi->clk = devm_clk_get(&pdev->dev, "spi");
1264 if (IS_ERR(tspi->clk)) {
1265 dev_err(&pdev->dev, "can not get clock\n");
1266 ret = PTR_ERR(tspi->clk);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001267 goto exit_free_master;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301268 }
1269
Philipp Zabeld006edb2017-07-19 17:26:23 +02001270 tspi->rst = devm_reset_control_get_exclusive(&pdev->dev, "spi");
Stephen Warrenff2251e2013-11-06 16:31:24 -07001271 if (IS_ERR(tspi->rst)) {
1272 dev_err(&pdev->dev, "can not get reset\n");
1273 ret = PTR_ERR(tspi->rst);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001274 goto exit_free_master;
Stephen Warrenff2251e2013-11-06 16:31:24 -07001275 }
1276
Laxman Dewanganf333a332013-02-22 18:07:39 +05301277 tspi->max_buf_size = SPI_FIFO_DEPTH << 2;
1278 tspi->dma_buf_size = DEFAULT_SPI_DMA_BUF_LEN;
1279
Stephen Warrena915d152013-11-11 13:13:47 -07001280 ret = tegra_spi_init_dma_param(tspi, true);
1281 if (ret < 0)
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001282 goto exit_free_master;
Stephen Warrena915d152013-11-11 13:13:47 -07001283 ret = tegra_spi_init_dma_param(tspi, false);
1284 if (ret < 0)
1285 goto exit_rx_dma_free;
1286 tspi->max_buf_size = tspi->dma_buf_size;
1287 init_completion(&tspi->tx_dma_complete);
1288 init_completion(&tspi->rx_dma_complete);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301289
1290 init_completion(&tspi->xfer_completion);
1291
1292 pm_runtime_enable(&pdev->dev);
1293 if (!pm_runtime_enabled(&pdev->dev)) {
1294 ret = tegra_spi_runtime_resume(&pdev->dev);
1295 if (ret)
1296 goto exit_pm_disable;
1297 }
1298
1299 ret = pm_runtime_get_sync(&pdev->dev);
1300 if (ret < 0) {
1301 dev_err(&pdev->dev, "pm runtime get failed, e = %d\n", ret);
1302 goto exit_pm_disable;
1303 }
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001304
1305 reset_control_assert(tspi->rst);
1306 udelay(2);
1307 reset_control_deassert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301308 tspi->def_command1_reg = SPI_M_S;
1309 tegra_spi_writel(tspi, tspi->def_command1_reg, SPI_COMMAND1);
1310 pm_runtime_put(&pdev->dev);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001311 ret = request_threaded_irq(tspi->irq, tegra_spi_isr,
1312 tegra_spi_isr_thread, IRQF_ONESHOT,
1313 dev_name(&pdev->dev), tspi);
1314 if (ret < 0) {
1315 dev_err(&pdev->dev, "Failed to register ISR for IRQ %d\n",
1316 tspi->irq);
1317 goto exit_pm_disable;
1318 }
Laxman Dewanganf333a332013-02-22 18:07:39 +05301319
1320 master->dev.of_node = pdev->dev.of_node;
Jingoo Han5c809642013-09-24 13:49:24 +09001321 ret = devm_spi_register_master(&pdev->dev, master);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301322 if (ret < 0) {
1323 dev_err(&pdev->dev, "can not register to master err %d\n", ret);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001324 goto exit_free_irq;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301325 }
1326 return ret;
1327
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001328exit_free_irq:
1329 free_irq(spi_irq, tspi);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301330exit_pm_disable:
1331 pm_runtime_disable(&pdev->dev);
1332 if (!pm_runtime_status_suspended(&pdev->dev))
1333 tegra_spi_runtime_suspend(&pdev->dev);
1334 tegra_spi_deinit_dma_param(tspi, false);
1335exit_rx_dma_free:
1336 tegra_spi_deinit_dma_param(tspi, true);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301337exit_free_master:
1338 spi_master_put(master);
1339 return ret;
1340}
1341
1342static int tegra_spi_remove(struct platform_device *pdev)
1343{
Jingoo Han24b5a822013-05-23 19:20:40 +09001344 struct spi_master *master = platform_get_drvdata(pdev);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301345 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1346
1347 free_irq(tspi->irq, tspi);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301348
1349 if (tspi->tx_dma_chan)
1350 tegra_spi_deinit_dma_param(tspi, false);
1351
1352 if (tspi->rx_dma_chan)
1353 tegra_spi_deinit_dma_param(tspi, true);
1354
1355 pm_runtime_disable(&pdev->dev);
1356 if (!pm_runtime_status_suspended(&pdev->dev))
1357 tegra_spi_runtime_suspend(&pdev->dev);
1358
1359 return 0;
1360}
1361
1362#ifdef CONFIG_PM_SLEEP
1363static int tegra_spi_suspend(struct device *dev)
1364{
1365 struct spi_master *master = dev_get_drvdata(dev);
1366
1367 return spi_master_suspend(master);
1368}
1369
1370static int tegra_spi_resume(struct device *dev)
1371{
1372 struct spi_master *master = dev_get_drvdata(dev);
1373 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1374 int ret;
1375
1376 ret = pm_runtime_get_sync(dev);
1377 if (ret < 0) {
1378 dev_err(dev, "pm runtime failed, e = %d\n", ret);
1379 return ret;
1380 }
1381 tegra_spi_writel(tspi, tspi->command1_reg, SPI_COMMAND1);
1382 pm_runtime_put(dev);
1383
1384 return spi_master_resume(master);
1385}
1386#endif
1387
1388static int tegra_spi_runtime_suspend(struct device *dev)
1389{
1390 struct spi_master *master = dev_get_drvdata(dev);
1391 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1392
1393 /* Flush all write which are in PPSB queue by reading back */
1394 tegra_spi_readl(tspi, SPI_COMMAND1);
1395
1396 clk_disable_unprepare(tspi->clk);
1397 return 0;
1398}
1399
1400static int tegra_spi_runtime_resume(struct device *dev)
1401{
1402 struct spi_master *master = dev_get_drvdata(dev);
1403 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1404 int ret;
1405
1406 ret = clk_prepare_enable(tspi->clk);
1407 if (ret < 0) {
1408 dev_err(tspi->dev, "clk_prepare failed: %d\n", ret);
1409 return ret;
1410 }
1411 return 0;
1412}
1413
1414static const struct dev_pm_ops tegra_spi_pm_ops = {
1415 SET_RUNTIME_PM_OPS(tegra_spi_runtime_suspend,
1416 tegra_spi_runtime_resume, NULL)
1417 SET_SYSTEM_SLEEP_PM_OPS(tegra_spi_suspend, tegra_spi_resume)
1418};
1419static struct platform_driver tegra_spi_driver = {
1420 .driver = {
1421 .name = "spi-tegra114",
Laxman Dewanganf333a332013-02-22 18:07:39 +05301422 .pm = &tegra_spi_pm_ops,
1423 .of_match_table = tegra_spi_of_match,
1424 },
1425 .probe = tegra_spi_probe,
1426 .remove = tegra_spi_remove,
1427};
1428module_platform_driver(tegra_spi_driver);
1429
1430MODULE_ALIAS("platform:spi-tegra114");
1431MODULE_DESCRIPTION("NVIDIA Tegra114 SPI Controller Driver");
1432MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
1433MODULE_LICENSE("GPL v2");