blob: b8c6393e219019b13f7387c9f6af48c77e19a06c [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;
196
197 struct completion rx_dma_complete;
198 struct completion tx_dma_complete;
199
200 u32 tx_status;
201 u32 rx_status;
202 u32 status_reg;
203 bool is_packed;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530204
205 u32 command1_reg;
206 u32 dma_control_reg;
207 u32 def_command1_reg;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530208
209 struct completion xfer_completion;
210 struct spi_transfer *curr_xfer;
211 struct dma_chan *rx_dma_chan;
212 u32 *rx_dma_buf;
213 dma_addr_t rx_dma_phys;
214 struct dma_async_tx_descriptor *rx_dma_desc;
215
216 struct dma_chan *tx_dma_chan;
217 u32 *tx_dma_buf;
218 dma_addr_t tx_dma_phys;
219 struct dma_async_tx_descriptor *tx_dma_desc;
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -0700220 const struct tegra_spi_soc_data *soc_data;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530221};
222
223static int tegra_spi_runtime_suspend(struct device *dev);
224static int tegra_spi_runtime_resume(struct device *dev);
225
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100226static inline u32 tegra_spi_readl(struct tegra_spi_data *tspi,
Laxman Dewanganf333a332013-02-22 18:07:39 +0530227 unsigned long reg)
228{
229 return readl(tspi->base + reg);
230}
231
232static inline void tegra_spi_writel(struct tegra_spi_data *tspi,
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100233 u32 val, unsigned long reg)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530234{
235 writel(val, tspi->base + reg);
236
237 /* Read back register to make sure that register writes completed */
238 if (reg != SPI_TX_FIFO)
239 readl(tspi->base + SPI_COMMAND1);
240}
241
242static void tegra_spi_clear_status(struct tegra_spi_data *tspi)
243{
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100244 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530245
246 /* Write 1 to clear status register */
247 val = tegra_spi_readl(tspi, SPI_TRANS_STATUS);
248 tegra_spi_writel(tspi, val, SPI_TRANS_STATUS);
249
250 /* Clear fifo status error if any */
251 val = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
252 if (val & SPI_ERR)
253 tegra_spi_writel(tspi, SPI_ERR | SPI_FIFO_ERROR,
254 SPI_FIFO_STATUS);
255}
256
257static unsigned tegra_spi_calculate_curr_xfer_param(
258 struct spi_device *spi, struct tegra_spi_data *tspi,
259 struct spi_transfer *t)
260{
261 unsigned remain_len = t->len - tspi->cur_pos;
262 unsigned max_word;
263 unsigned bits_per_word = t->bits_per_word;
264 unsigned max_len;
265 unsigned total_fifo_words;
266
Axel Line91d2352013-08-30 11:00:23 +0800267 tspi->bytes_per_word = DIV_ROUND_UP(bits_per_word, 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530268
Sowjanya Komatineni76457eea2019-04-04 17:14:01 -0700269 if ((bits_per_word == 8 || bits_per_word == 16 ||
270 bits_per_word == 32) && t->len > 3) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530271 tspi->is_packed = 1;
272 tspi->words_per_32bit = 32/bits_per_word;
273 } else {
274 tspi->is_packed = 0;
275 tspi->words_per_32bit = 1;
276 }
277
278 if (tspi->is_packed) {
279 max_len = min(remain_len, tspi->max_buf_size);
280 tspi->curr_dma_words = max_len/tspi->bytes_per_word;
281 total_fifo_words = (max_len + 3) / 4;
282 } else {
283 max_word = (remain_len - 1) / tspi->bytes_per_word + 1;
284 max_word = min(max_word, tspi->max_buf_size/4);
285 tspi->curr_dma_words = max_word;
286 total_fifo_words = max_word;
287 }
288 return total_fifo_words;
289}
290
291static unsigned tegra_spi_fill_tx_fifo_from_client_txbuf(
292 struct tegra_spi_data *tspi, struct spi_transfer *t)
293{
294 unsigned nbytes;
295 unsigned tx_empty_count;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100296 u32 fifo_status;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530297 unsigned max_n_32bit;
298 unsigned i, count;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530299 unsigned int written_words;
300 unsigned fifo_words_left;
301 u8 *tx_buf = (u8 *)t->tx_buf + tspi->cur_tx_pos;
302
303 fifo_status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
304 tx_empty_count = SPI_TX_FIFO_EMPTY_COUNT(fifo_status);
305
306 if (tspi->is_packed) {
307 fifo_words_left = tx_empty_count * tspi->words_per_32bit;
308 written_words = min(fifo_words_left, tspi->curr_dma_words);
309 nbytes = written_words * tspi->bytes_per_word;
310 max_n_32bit = DIV_ROUND_UP(nbytes, 4);
311 for (count = 0; count < max_n_32bit; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100312 u32 x = 0;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900313
Laxman Dewanganf333a332013-02-22 18:07:39 +0530314 for (i = 0; (i < 4) && nbytes; i++, nbytes--)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100315 x |= (u32)(*tx_buf++) << (i * 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530316 tegra_spi_writel(tspi, x, SPI_TX_FIFO);
317 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700318
319 tspi->cur_tx_pos += written_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530320 } else {
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700321 unsigned int write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530322 max_n_32bit = min(tspi->curr_dma_words, tx_empty_count);
323 written_words = max_n_32bit;
324 nbytes = written_words * tspi->bytes_per_word;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700325 if (nbytes > t->len - tspi->cur_pos)
326 nbytes = t->len - tspi->cur_pos;
327 write_bytes = nbytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530328 for (count = 0; count < max_n_32bit; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100329 u32 x = 0;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900330
Laxman Dewanganf333a332013-02-22 18:07:39 +0530331 for (i = 0; nbytes && (i < tspi->bytes_per_word);
332 i++, nbytes--)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100333 x |= (u32)(*tx_buf++) << (i * 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530334 tegra_spi_writel(tspi, x, SPI_TX_FIFO);
335 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700336
337 tspi->cur_tx_pos += write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530338 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700339
Laxman Dewanganf333a332013-02-22 18:07:39 +0530340 return written_words;
341}
342
343static unsigned int tegra_spi_read_rx_fifo_to_client_rxbuf(
344 struct tegra_spi_data *tspi, struct spi_transfer *t)
345{
346 unsigned rx_full_count;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100347 u32 fifo_status;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530348 unsigned i, count;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530349 unsigned int read_words = 0;
350 unsigned len;
351 u8 *rx_buf = (u8 *)t->rx_buf + tspi->cur_rx_pos;
352
353 fifo_status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
354 rx_full_count = SPI_RX_FIFO_FULL_COUNT(fifo_status);
355 if (tspi->is_packed) {
356 len = tspi->curr_dma_words * tspi->bytes_per_word;
357 for (count = 0; count < rx_full_count; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100358 u32 x = tegra_spi_readl(tspi, SPI_RX_FIFO);
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900359
Laxman Dewanganf333a332013-02-22 18:07:39 +0530360 for (i = 0; len && (i < 4); i++, len--)
361 *rx_buf++ = (x >> i*8) & 0xFF;
362 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530363 read_words += tspi->curr_dma_words;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700364 tspi->cur_rx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530365 } else {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100366 u32 rx_mask = ((u32)1 << t->bits_per_word) - 1;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700367 u8 bytes_per_word = tspi->bytes_per_word;
368 unsigned int read_bytes;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900369
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700370 len = rx_full_count * bytes_per_word;
371 if (len > t->len - tspi->cur_pos)
372 len = t->len - tspi->cur_pos;
373 read_bytes = len;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530374 for (count = 0; count < rx_full_count; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100375 u32 x = tegra_spi_readl(tspi, SPI_RX_FIFO) & rx_mask;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900376
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700377 for (i = 0; len && (i < bytes_per_word); i++, len--)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530378 *rx_buf++ = (x >> (i*8)) & 0xFF;
379 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530380 read_words += rx_full_count;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700381 tspi->cur_rx_pos += read_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530382 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700383
Laxman Dewanganf333a332013-02-22 18:07:39 +0530384 return read_words;
385}
386
387static void tegra_spi_copy_client_txbuf_to_spi_txbuf(
388 struct tegra_spi_data *tspi, struct spi_transfer *t)
389{
Laxman Dewanganf333a332013-02-22 18:07:39 +0530390 /* Make the dma buffer to read by cpu */
391 dma_sync_single_for_cpu(tspi->dev, tspi->tx_dma_phys,
392 tspi->dma_buf_size, DMA_TO_DEVICE);
393
394 if (tspi->is_packed) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100395 unsigned len = tspi->curr_dma_words * tspi->bytes_per_word;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900396
Laxman Dewanganf333a332013-02-22 18:07:39 +0530397 memcpy(tspi->tx_dma_buf, t->tx_buf + tspi->cur_pos, len);
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700398 tspi->cur_tx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530399 } else {
400 unsigned int i;
401 unsigned int count;
402 u8 *tx_buf = (u8 *)t->tx_buf + tspi->cur_tx_pos;
403 unsigned consume = tspi->curr_dma_words * tspi->bytes_per_word;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700404 unsigned int write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530405
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700406 if (consume > t->len - tspi->cur_pos)
407 consume = t->len - tspi->cur_pos;
408 write_bytes = consume;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530409 for (count = 0; count < tspi->curr_dma_words; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100410 u32 x = 0;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900411
Laxman Dewanganf333a332013-02-22 18:07:39 +0530412 for (i = 0; consume && (i < tspi->bytes_per_word);
413 i++, consume--)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100414 x |= (u32)(*tx_buf++) << (i * 8);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530415 tspi->tx_dma_buf[count] = x;
416 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700417
418 tspi->cur_tx_pos += write_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530419 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530420
421 /* Make the dma buffer to read by dma */
422 dma_sync_single_for_device(tspi->dev, tspi->tx_dma_phys,
423 tspi->dma_buf_size, DMA_TO_DEVICE);
424}
425
426static void tegra_spi_copy_spi_rxbuf_to_client_rxbuf(
427 struct tegra_spi_data *tspi, struct spi_transfer *t)
428{
Laxman Dewanganf333a332013-02-22 18:07:39 +0530429 /* Make the dma buffer to read by cpu */
430 dma_sync_single_for_cpu(tspi->dev, tspi->rx_dma_phys,
431 tspi->dma_buf_size, DMA_FROM_DEVICE);
432
433 if (tspi->is_packed) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100434 unsigned len = tspi->curr_dma_words * tspi->bytes_per_word;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900435
Laxman Dewanganf333a332013-02-22 18:07:39 +0530436 memcpy(t->rx_buf + tspi->cur_rx_pos, tspi->rx_dma_buf, len);
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700437 tspi->cur_rx_pos += tspi->curr_dma_words * tspi->bytes_per_word;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530438 } else {
439 unsigned int i;
440 unsigned int count;
441 unsigned char *rx_buf = t->rx_buf + tspi->cur_rx_pos;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100442 u32 rx_mask = ((u32)1 << t->bits_per_word) - 1;
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700443 unsigned consume = tspi->curr_dma_words * tspi->bytes_per_word;
444 unsigned int read_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530445
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700446 if (consume > t->len - tspi->cur_pos)
447 consume = t->len - tspi->cur_pos;
448 read_bytes = consume;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530449 for (count = 0; count < tspi->curr_dma_words; count++) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100450 u32 x = tspi->rx_dma_buf[count] & rx_mask;
Jingoo Hanc19c8e72014-09-02 11:52:23 +0900451
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700452 for (i = 0; consume && (i < tspi->bytes_per_word);
453 i++, consume--)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530454 *rx_buf++ = (x >> (i*8)) & 0xFF;
455 }
Sowjanya Komatineni1a89ac52019-03-26 22:56:24 -0700456
457 tspi->cur_rx_pos += read_bytes;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530458 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530459
460 /* Make the dma buffer to read by dma */
461 dma_sync_single_for_device(tspi->dev, tspi->rx_dma_phys,
462 tspi->dma_buf_size, DMA_FROM_DEVICE);
463}
464
465static void tegra_spi_dma_complete(void *args)
466{
467 struct completion *dma_complete = args;
468
469 complete(dma_complete);
470}
471
472static int tegra_spi_start_tx_dma(struct tegra_spi_data *tspi, int len)
473{
Wolfram Sang16735d02013-11-14 14:32:02 -0800474 reinit_completion(&tspi->tx_dma_complete);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530475 tspi->tx_dma_desc = dmaengine_prep_slave_single(tspi->tx_dma_chan,
476 tspi->tx_dma_phys, len, DMA_MEM_TO_DEV,
477 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
478 if (!tspi->tx_dma_desc) {
479 dev_err(tspi->dev, "Not able to get desc for Tx\n");
480 return -EIO;
481 }
482
483 tspi->tx_dma_desc->callback = tegra_spi_dma_complete;
484 tspi->tx_dma_desc->callback_param = &tspi->tx_dma_complete;
485
486 dmaengine_submit(tspi->tx_dma_desc);
487 dma_async_issue_pending(tspi->tx_dma_chan);
488 return 0;
489}
490
491static int tegra_spi_start_rx_dma(struct tegra_spi_data *tspi, int len)
492{
Wolfram Sang16735d02013-11-14 14:32:02 -0800493 reinit_completion(&tspi->rx_dma_complete);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530494 tspi->rx_dma_desc = dmaengine_prep_slave_single(tspi->rx_dma_chan,
495 tspi->rx_dma_phys, len, DMA_DEV_TO_MEM,
496 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
497 if (!tspi->rx_dma_desc) {
498 dev_err(tspi->dev, "Not able to get desc for Rx\n");
499 return -EIO;
500 }
501
502 tspi->rx_dma_desc->callback = tegra_spi_dma_complete;
503 tspi->rx_dma_desc->callback_param = &tspi->rx_dma_complete;
504
505 dmaengine_submit(tspi->rx_dma_desc);
506 dma_async_issue_pending(tspi->rx_dma_chan);
507 return 0;
508}
509
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -0700510static int tegra_spi_flush_fifos(struct tegra_spi_data *tspi)
511{
512 unsigned long timeout = jiffies + HZ;
513 u32 status;
514
515 status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
516 if ((status & SPI_FIFO_EMPTY) != SPI_FIFO_EMPTY) {
517 status |= SPI_RX_FIFO_FLUSH | SPI_TX_FIFO_FLUSH;
518 tegra_spi_writel(tspi, status, SPI_FIFO_STATUS);
519 while ((status & SPI_FIFO_EMPTY) != SPI_FIFO_EMPTY) {
520 status = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
521 if (time_after(jiffies, timeout)) {
522 dev_err(tspi->dev,
523 "timeout waiting for fifo flush\n");
524 return -EIO;
525 }
526
527 udelay(1);
528 }
529 }
530
531 return 0;
532}
533
Laxman Dewanganf333a332013-02-22 18:07:39 +0530534static int tegra_spi_start_dma_based_transfer(
535 struct tegra_spi_data *tspi, struct spi_transfer *t)
536{
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100537 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530538 unsigned int len;
539 int ret = 0;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700540 u8 dma_burst;
541 struct dma_slave_config dma_sconfig = {0};
Laxman Dewanganf333a332013-02-22 18:07:39 +0530542
543 val = SPI_DMA_BLK_SET(tspi->curr_dma_words - 1);
544 tegra_spi_writel(tspi, val, SPI_DMA_BLK);
545
546 if (tspi->is_packed)
547 len = DIV_ROUND_UP(tspi->curr_dma_words * tspi->bytes_per_word,
548 4) * 4;
549 else
550 len = tspi->curr_dma_words * 4;
551
552 /* Set attention level based on length of transfer */
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700553 if (len & 0xF) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530554 val |= SPI_TX_TRIG_1 | SPI_RX_TRIG_1;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700555 dma_burst = 1;
556 } else if (((len) >> 4) & 0x1) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530557 val |= SPI_TX_TRIG_4 | SPI_RX_TRIG_4;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700558 dma_burst = 4;
559 } else {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530560 val |= SPI_TX_TRIG_8 | SPI_RX_TRIG_8;
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700561 dma_burst = 8;
562 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530563
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -0700564 if (!tspi->soc_data->has_intr_mask_reg) {
565 if (tspi->cur_direction & DATA_DIR_TX)
566 val |= SPI_IE_TX;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530567
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -0700568 if (tspi->cur_direction & DATA_DIR_RX)
569 val |= SPI_IE_RX;
570 }
Laxman Dewanganf333a332013-02-22 18:07:39 +0530571
572 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
573 tspi->dma_control_reg = val;
574
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700575 dma_sconfig.device_fc = true;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530576 if (tspi->cur_direction & DATA_DIR_TX) {
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700577 dma_sconfig.dst_addr = tspi->phys + SPI_TX_FIFO;
578 dma_sconfig.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
579 dma_sconfig.dst_maxburst = dma_burst;
580 ret = dmaengine_slave_config(tspi->tx_dma_chan, &dma_sconfig);
581 if (ret < 0) {
582 dev_err(tspi->dev,
583 "DMA slave config failed: %d\n", ret);
584 return ret;
585 }
586
Laxman Dewanganf333a332013-02-22 18:07:39 +0530587 tegra_spi_copy_client_txbuf_to_spi_txbuf(tspi, t);
588 ret = tegra_spi_start_tx_dma(tspi, len);
589 if (ret < 0) {
590 dev_err(tspi->dev,
591 "Starting tx dma failed, err %d\n", ret);
592 return ret;
593 }
594 }
595
596 if (tspi->cur_direction & DATA_DIR_RX) {
Sowjanya Komatinenif4ce4282019-03-26 22:56:29 -0700597 dma_sconfig.src_addr = tspi->phys + SPI_RX_FIFO;
598 dma_sconfig.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
599 dma_sconfig.src_maxburst = dma_burst;
600 ret = dmaengine_slave_config(tspi->rx_dma_chan, &dma_sconfig);
601 if (ret < 0) {
602 dev_err(tspi->dev,
603 "DMA slave config failed: %d\n", ret);
604 return ret;
605 }
606
Laxman Dewanganf333a332013-02-22 18:07:39 +0530607 /* Make the dma buffer to read by dma */
608 dma_sync_single_for_device(tspi->dev, tspi->rx_dma_phys,
609 tspi->dma_buf_size, DMA_FROM_DEVICE);
610
611 ret = tegra_spi_start_rx_dma(tspi, len);
612 if (ret < 0) {
613 dev_err(tspi->dev,
614 "Starting rx dma failed, err %d\n", ret);
615 if (tspi->cur_direction & DATA_DIR_TX)
616 dmaengine_terminate_all(tspi->tx_dma_chan);
617 return ret;
618 }
619 }
620 tspi->is_curr_dma_xfer = true;
621 tspi->dma_control_reg = val;
622
623 val |= SPI_DMA_EN;
624 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
625 return ret;
626}
627
628static int tegra_spi_start_cpu_based_transfer(
629 struct tegra_spi_data *tspi, struct spi_transfer *t)
630{
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100631 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530632 unsigned cur_words;
633
634 if (tspi->cur_direction & DATA_DIR_TX)
635 cur_words = tegra_spi_fill_tx_fifo_from_client_txbuf(tspi, t);
636 else
637 cur_words = tspi->curr_dma_words;
638
639 val = SPI_DMA_BLK_SET(cur_words - 1);
640 tegra_spi_writel(tspi, val, SPI_DMA_BLK);
641
642 val = 0;
643 if (tspi->cur_direction & DATA_DIR_TX)
644 val |= SPI_IE_TX;
645
646 if (tspi->cur_direction & DATA_DIR_RX)
647 val |= SPI_IE_RX;
648
649 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
650 tspi->dma_control_reg = val;
651
652 tspi->is_curr_dma_xfer = false;
653
654 val |= SPI_DMA_EN;
655 tegra_spi_writel(tspi, val, SPI_DMA_CTL);
656 return 0;
657}
658
659static int tegra_spi_init_dma_param(struct tegra_spi_data *tspi,
660 bool dma_to_memory)
661{
662 struct dma_chan *dma_chan;
663 u32 *dma_buf;
664 dma_addr_t dma_phys;
665 int ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530666
Stephen Warrena915d152013-11-11 13:13:47 -0700667 dma_chan = dma_request_slave_channel_reason(tspi->dev,
668 dma_to_memory ? "rx" : "tx");
669 if (IS_ERR(dma_chan)) {
670 ret = PTR_ERR(dma_chan);
671 if (ret != -EPROBE_DEFER)
672 dev_err(tspi->dev,
673 "Dma channel is not available: %d\n", ret);
674 return ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530675 }
676
677 dma_buf = dma_alloc_coherent(tspi->dev, tspi->dma_buf_size,
678 &dma_phys, GFP_KERNEL);
679 if (!dma_buf) {
680 dev_err(tspi->dev, " Not able to allocate the dma buffer\n");
681 dma_release_channel(dma_chan);
682 return -ENOMEM;
683 }
684
Laxman Dewanganf333a332013-02-22 18:07:39 +0530685 if (dma_to_memory) {
Laxman Dewanganf333a332013-02-22 18:07:39 +0530686 tspi->rx_dma_chan = dma_chan;
687 tspi->rx_dma_buf = dma_buf;
688 tspi->rx_dma_phys = dma_phys;
689 } else {
690 tspi->tx_dma_chan = dma_chan;
691 tspi->tx_dma_buf = dma_buf;
692 tspi->tx_dma_phys = dma_phys;
693 }
694 return 0;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530695}
696
697static void tegra_spi_deinit_dma_param(struct tegra_spi_data *tspi,
698 bool dma_to_memory)
699{
700 u32 *dma_buf;
701 dma_addr_t dma_phys;
702 struct dma_chan *dma_chan;
703
704 if (dma_to_memory) {
705 dma_buf = tspi->rx_dma_buf;
706 dma_chan = tspi->rx_dma_chan;
707 dma_phys = tspi->rx_dma_phys;
708 tspi->rx_dma_chan = NULL;
709 tspi->rx_dma_buf = NULL;
710 } else {
711 dma_buf = tspi->tx_dma_buf;
712 dma_chan = tspi->tx_dma_chan;
713 dma_phys = tspi->tx_dma_phys;
714 tspi->tx_dma_buf = NULL;
715 tspi->tx_dma_chan = NULL;
716 }
717 if (!dma_chan)
718 return;
719
720 dma_free_coherent(tspi->dev, tspi->dma_buf_size, dma_buf, dma_phys);
721 dma_release_channel(dma_chan);
722}
723
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100724static u32 tegra_spi_setup_transfer_one(struct spi_device *spi,
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400725 struct spi_transfer *t, bool is_first_of_msg)
Laxman Dewanganf333a332013-02-22 18:07:39 +0530726{
727 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
728 u32 speed = t->speed_hz;
729 u8 bits_per_word = t->bits_per_word;
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100730 u32 command1;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530731 int req_mode;
732
733 if (speed != tspi->cur_speed) {
734 clk_set_rate(tspi->clk, speed);
735 tspi->cur_speed = speed;
736 }
737
738 tspi->cur_spi = spi;
739 tspi->cur_pos = 0;
740 tspi->cur_rx_pos = 0;
741 tspi->cur_tx_pos = 0;
742 tspi->curr_xfer = t;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530743
744 if (is_first_of_msg) {
745 tegra_spi_clear_status(tspi);
746
747 command1 = tspi->def_command1_reg;
748 command1 |= SPI_BIT_LENGTH(bits_per_word - 1);
749
750 command1 &= ~SPI_CONTROL_MODE_MASK;
751 req_mode = spi->mode & 0x3;
752 if (req_mode == SPI_MODE_0)
753 command1 |= SPI_CONTROL_MODE_0;
754 else if (req_mode == SPI_MODE_1)
755 command1 |= SPI_CONTROL_MODE_1;
756 else if (req_mode == SPI_MODE_2)
757 command1 |= SPI_CONTROL_MODE_2;
758 else if (req_mode == SPI_MODE_3)
759 command1 |= SPI_CONTROL_MODE_3;
760
Sowjanya Komatineni2b17a3c2019-03-26 22:56:33 -0700761 if (spi->mode & SPI_LSB_FIRST)
762 command1 |= SPI_LSBIT_FE;
763 else
764 command1 &= ~SPI_LSBIT_FE;
765
Sowjanya Komatineni9d199232019-04-04 17:14:08 -0700766 if (spi->mode & SPI_3WIRE)
767 command1 |= SPI_BIDIROE;
768 else
769 command1 &= ~SPI_BIDIROE;
770
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400771 if (tspi->cs_control) {
772 if (tspi->cs_control != spi)
773 tegra_spi_writel(tspi, command1, SPI_COMMAND1);
774 tspi->cs_control = NULL;
775 } else
776 tegra_spi_writel(tspi, command1, SPI_COMMAND1);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530777
778 command1 |= SPI_CS_SW_HW;
779 if (spi->mode & SPI_CS_HIGH)
Ralf Ramsauer979a9af2017-10-05 13:22:36 +0200780 command1 |= SPI_CS_SW_VAL;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530781 else
Ralf Ramsauer979a9af2017-10-05 13:22:36 +0200782 command1 &= ~SPI_CS_SW_VAL;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530783
784 tegra_spi_writel(tspi, 0, SPI_COMMAND2);
785 } else {
786 command1 = tspi->command1_reg;
787 command1 &= ~SPI_BIT_LENGTH(~0);
788 command1 |= SPI_BIT_LENGTH(bits_per_word - 1);
789 }
790
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400791 return command1;
792}
793
794static int tegra_spi_start_transfer_one(struct spi_device *spi,
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100795 struct spi_transfer *t, u32 command1)
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400796{
797 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
798 unsigned total_fifo_words;
799 int ret;
800
801 total_fifo_words = tegra_spi_calculate_curr_xfer_param(spi, tspi, t);
802
Sowjanya Komatineni9877a342019-04-04 17:14:07 -0700803 if (t->rx_nbits == SPI_NBITS_DUAL || t->tx_nbits == SPI_NBITS_DUAL)
804 command1 |= SPI_BOTH_EN_BIT;
805 else
806 command1 &= ~SPI_BOTH_EN_BIT;
807
Laxman Dewanganf333a332013-02-22 18:07:39 +0530808 if (tspi->is_packed)
809 command1 |= SPI_PACKED;
Sowjanya Komatineni7b3d10c2019-03-26 22:56:23 -0700810 else
811 command1 &= ~SPI_PACKED;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530812
813 command1 &= ~(SPI_CS_SEL_MASK | SPI_TX_EN | SPI_RX_EN);
814 tspi->cur_direction = 0;
815 if (t->rx_buf) {
816 command1 |= SPI_RX_EN;
817 tspi->cur_direction |= DATA_DIR_RX;
818 }
819 if (t->tx_buf) {
820 command1 |= SPI_TX_EN;
821 tspi->cur_direction |= DATA_DIR_TX;
822 }
823 command1 |= SPI_CS_SEL(spi->chip_select);
824 tegra_spi_writel(tspi, command1, SPI_COMMAND1);
825 tspi->command1_reg = command1;
826
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100827 dev_dbg(tspi->dev, "The def 0x%x and written 0x%x\n",
828 tspi->def_command1_reg, (unsigned)command1);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530829
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -0700830 ret = tegra_spi_flush_fifos(tspi);
831 if (ret < 0)
832 return ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530833 if (total_fifo_words > SPI_FIFO_DEPTH)
834 ret = tegra_spi_start_dma_based_transfer(tspi, t);
835 else
836 ret = tegra_spi_start_cpu_based_transfer(tspi, t);
837 return ret;
838}
839
840static int tegra_spi_setup(struct spi_device *spi)
841{
842 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100843 u32 val;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530844 unsigned long flags;
845 int ret;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530846
847 dev_dbg(&spi->dev, "setup %d bpw, %scpol, %scpha, %dHz\n",
848 spi->bits_per_word,
849 spi->mode & SPI_CPOL ? "" : "~",
850 spi->mode & SPI_CPHA ? "" : "~",
851 spi->max_speed_hz);
852
Laxman Dewanganf333a332013-02-22 18:07:39 +0530853 ret = pm_runtime_get_sync(tspi->dev);
854 if (ret < 0) {
855 dev_err(tspi->dev, "pm runtime failed, e = %d\n", ret);
856 return ret;
857 }
858
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -0700859 if (tspi->soc_data->has_intr_mask_reg) {
860 val = tegra_spi_readl(tspi, SPI_INTR_MASK);
861 val &= ~SPI_INTR_ALL_MASK;
862 tegra_spi_writel(tspi, val, SPI_INTR_MASK);
863 }
864
Laxman Dewanganf333a332013-02-22 18:07:39 +0530865 spin_lock_irqsave(&tspi->lock, flags);
866 val = tspi->def_command1_reg;
867 if (spi->mode & SPI_CS_HIGH)
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100868 val &= ~SPI_CS_POL_INACTIVE(spi->chip_select);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530869 else
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100870 val |= SPI_CS_POL_INACTIVE(spi->chip_select);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530871 tspi->def_command1_reg = val;
872 tegra_spi_writel(tspi, tspi->def_command1_reg, SPI_COMMAND1);
873 spin_unlock_irqrestore(&tspi->lock, flags);
874
875 pm_runtime_put(tspi->dev);
876 return 0;
877}
878
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400879static void tegra_spi_transfer_delay(int delay)
880{
881 if (!delay)
882 return;
883
884 if (delay >= 1000)
885 mdelay(delay / 1000);
886
887 udelay(delay % 1000);
888}
889
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -0700890static void tegra_spi_transfer_end(struct spi_device *spi)
891{
892 struct tegra_spi_data *tspi = spi_master_get_devdata(spi->master);
893 int cs_val = (spi->mode & SPI_CS_HIGH) ? 0 : 1;
894
895 if (cs_val)
896 tspi->command1_reg |= SPI_CS_SW_VAL;
897 else
898 tspi->command1_reg &= ~SPI_CS_SW_VAL;
899 tegra_spi_writel(tspi, tspi->command1_reg, SPI_COMMAND1);
900 tegra_spi_writel(tspi, tspi->def_command1_reg, SPI_COMMAND1);
901}
902
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -0700903static void tegra_spi_dump_regs(struct tegra_spi_data *tspi)
904{
905 dev_dbg(tspi->dev, "============ SPI REGISTER DUMP ============\n");
906 dev_dbg(tspi->dev, "Command1: 0x%08x | Command2: 0x%08x\n",
907 tegra_spi_readl(tspi, SPI_COMMAND1),
908 tegra_spi_readl(tspi, SPI_COMMAND2));
909 dev_dbg(tspi->dev, "DMA_CTL: 0x%08x | DMA_BLK: 0x%08x\n",
910 tegra_spi_readl(tspi, SPI_DMA_CTL),
911 tegra_spi_readl(tspi, SPI_DMA_BLK));
912 dev_dbg(tspi->dev, "TRANS_STAT: 0x%08x | FIFO_STATUS: 0x%08x\n",
913 tegra_spi_readl(tspi, SPI_TRANS_STATUS),
914 tegra_spi_readl(tspi, SPI_FIFO_STATUS));
915}
916
Laxman Dewanganf333a332013-02-22 18:07:39 +0530917static int tegra_spi_transfer_one_message(struct spi_master *master,
918 struct spi_message *msg)
919{
920 bool is_first_msg = true;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530921 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
922 struct spi_transfer *xfer;
923 struct spi_device *spi = msg->spi;
924 int ret;
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400925 bool skip = false;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530926
927 msg->status = 0;
928 msg->actual_length = 0;
929
Laxman Dewanganf333a332013-02-22 18:07:39 +0530930 list_for_each_entry(xfer, &msg->transfers, transfer_list) {
Michal Nazarewicz48c3fc92013-12-08 16:35:09 +0100931 u32 cmd1;
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400932
Wolfram Sang16735d02013-11-14 14:32:02 -0800933 reinit_completion(&tspi->xfer_completion);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400934
935 cmd1 = tegra_spi_setup_transfer_one(spi, xfer, is_first_msg);
936
937 if (!xfer->len) {
938 ret = 0;
939 skip = true;
940 goto complete_xfer;
941 }
942
943 ret = tegra_spi_start_transfer_one(spi, xfer, cmd1);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530944 if (ret < 0) {
945 dev_err(tspi->dev,
946 "spi can not start transfer, err %d\n", ret);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400947 goto complete_xfer;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530948 }
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400949
Laxman Dewanganf333a332013-02-22 18:07:39 +0530950 is_first_msg = false;
951 ret = wait_for_completion_timeout(&tspi->xfer_completion,
952 SPI_DMA_TIMEOUT);
953 if (WARN_ON(ret == 0)) {
954 dev_err(tspi->dev,
Colin Ian Kingbfca7612017-04-23 18:14:36 +0100955 "spi transfer timeout, err %d\n", ret);
Sowjanya Komatineni32bd1a92019-03-26 22:56:27 -0700956 if (tspi->is_curr_dma_xfer &&
957 (tspi->cur_direction & DATA_DIR_TX))
958 dmaengine_terminate_all(tspi->tx_dma_chan);
959 if (tspi->is_curr_dma_xfer &&
960 (tspi->cur_direction & DATA_DIR_RX))
961 dmaengine_terminate_all(tspi->rx_dma_chan);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530962 ret = -EIO;
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -0700963 tegra_spi_dump_regs(tspi);
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -0700964 tegra_spi_flush_fifos(tspi);
Sowjanya Komatineni32bd1a92019-03-26 22:56:27 -0700965 reset_control_assert(tspi->rst);
966 udelay(2);
967 reset_control_deassert(tspi->rst);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400968 goto complete_xfer;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530969 }
970
971 if (tspi->tx_status || tspi->rx_status) {
972 dev_err(tspi->dev, "Error in Transfer\n");
973 ret = -EIO;
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -0700974 tegra_spi_dump_regs(tspi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400975 goto complete_xfer;
Laxman Dewanganf333a332013-02-22 18:07:39 +0530976 }
977 msg->actual_length += xfer->len;
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400978
979complete_xfer:
980 if (ret < 0 || skip) {
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -0700981 tegra_spi_transfer_end(spi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400982 tegra_spi_transfer_delay(xfer->delay_usecs);
983 goto exit;
Axel Lin971e9082014-01-15 14:07:04 +0800984 } else if (list_is_last(&xfer->transfer_list,
985 &msg->transfers)) {
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400986 if (xfer->cs_change)
987 tspi->cs_control = spi;
988 else {
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -0700989 tegra_spi_transfer_end(spi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400990 tegra_spi_transfer_delay(xfer->delay_usecs);
991 }
992 } else if (xfer->cs_change) {
Sowjanya Komatinenif3e182c2019-04-04 17:14:02 -0700993 tegra_spi_transfer_end(spi);
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400994 tegra_spi_transfer_delay(xfer->delay_usecs);
Laxman Dewanganf333a332013-02-22 18:07:39 +0530995 }
Rhyland Kleinf4fade12013-09-26 13:01:43 -0400996
Laxman Dewanganf333a332013-02-22 18:07:39 +0530997 }
998 ret = 0;
999exit:
Laxman Dewanganf333a332013-02-22 18:07:39 +05301000 msg->status = ret;
1001 spi_finalize_current_message(master);
1002 return ret;
1003}
1004
1005static irqreturn_t handle_cpu_based_xfer(struct tegra_spi_data *tspi)
1006{
1007 struct spi_transfer *t = tspi->curr_xfer;
1008 unsigned long flags;
1009
1010 spin_lock_irqsave(&tspi->lock, flags);
1011 if (tspi->tx_status || tspi->rx_status) {
1012 dev_err(tspi->dev, "CpuXfer ERROR bit set 0x%x\n",
1013 tspi->status_reg);
1014 dev_err(tspi->dev, "CpuXfer 0x%08x:0x%08x\n",
1015 tspi->command1_reg, tspi->dma_control_reg);
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -07001016 tegra_spi_dump_regs(tspi);
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -07001017 tegra_spi_flush_fifos(tspi);
Sowjanya Komatinenia0265252019-04-04 17:14:03 -07001018 complete(&tspi->xfer_completion);
1019 spin_unlock_irqrestore(&tspi->lock, flags);
Stephen Warrenff2251e2013-11-06 16:31:24 -07001020 reset_control_assert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301021 udelay(2);
Stephen Warrenff2251e2013-11-06 16:31:24 -07001022 reset_control_deassert(tspi->rst);
Sowjanya Komatinenia0265252019-04-04 17:14:03 -07001023 return IRQ_HANDLED;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301024 }
1025
1026 if (tspi->cur_direction & DATA_DIR_RX)
1027 tegra_spi_read_rx_fifo_to_client_rxbuf(tspi, t);
1028
1029 if (tspi->cur_direction & DATA_DIR_TX)
1030 tspi->cur_pos = tspi->cur_tx_pos;
1031 else
1032 tspi->cur_pos = tspi->cur_rx_pos;
1033
1034 if (tspi->cur_pos == t->len) {
1035 complete(&tspi->xfer_completion);
1036 goto exit;
1037 }
1038
1039 tegra_spi_calculate_curr_xfer_param(tspi->cur_spi, tspi, t);
1040 tegra_spi_start_cpu_based_transfer(tspi, t);
1041exit:
1042 spin_unlock_irqrestore(&tspi->lock, flags);
1043 return IRQ_HANDLED;
1044}
1045
1046static irqreturn_t handle_dma_based_xfer(struct tegra_spi_data *tspi)
1047{
1048 struct spi_transfer *t = tspi->curr_xfer;
1049 long wait_status;
1050 int err = 0;
1051 unsigned total_fifo_words;
1052 unsigned long flags;
1053
1054 /* Abort dmas if any error */
1055 if (tspi->cur_direction & DATA_DIR_TX) {
1056 if (tspi->tx_status) {
1057 dmaengine_terminate_all(tspi->tx_dma_chan);
1058 err += 1;
1059 } else {
1060 wait_status = wait_for_completion_interruptible_timeout(
1061 &tspi->tx_dma_complete, SPI_DMA_TIMEOUT);
1062 if (wait_status <= 0) {
1063 dmaengine_terminate_all(tspi->tx_dma_chan);
1064 dev_err(tspi->dev, "TxDma Xfer failed\n");
1065 err += 1;
1066 }
1067 }
1068 }
1069
1070 if (tspi->cur_direction & DATA_DIR_RX) {
1071 if (tspi->rx_status) {
1072 dmaengine_terminate_all(tspi->rx_dma_chan);
1073 err += 2;
1074 } else {
1075 wait_status = wait_for_completion_interruptible_timeout(
1076 &tspi->rx_dma_complete, SPI_DMA_TIMEOUT);
1077 if (wait_status <= 0) {
1078 dmaengine_terminate_all(tspi->rx_dma_chan);
1079 dev_err(tspi->dev, "RxDma Xfer failed\n");
1080 err += 2;
1081 }
1082 }
1083 }
1084
1085 spin_lock_irqsave(&tspi->lock, flags);
1086 if (err) {
1087 dev_err(tspi->dev, "DmaXfer: ERROR bit set 0x%x\n",
1088 tspi->status_reg);
1089 dev_err(tspi->dev, "DmaXfer 0x%08x:0x%08x\n",
1090 tspi->command1_reg, tspi->dma_control_reg);
Sowjanya Komatinenia0253c82019-04-04 17:14:04 -07001091 tegra_spi_dump_regs(tspi);
Sowjanya Komatinenic4fc9e52019-03-26 22:56:28 -07001092 tegra_spi_flush_fifos(tspi);
Sowjanya Komatinenia0265252019-04-04 17:14:03 -07001093 complete(&tspi->xfer_completion);
1094 spin_unlock_irqrestore(&tspi->lock, flags);
Stephen Warrenff2251e2013-11-06 16:31:24 -07001095 reset_control_assert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301096 udelay(2);
Stephen Warrenff2251e2013-11-06 16:31:24 -07001097 reset_control_deassert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301098 return IRQ_HANDLED;
1099 }
1100
1101 if (tspi->cur_direction & DATA_DIR_RX)
1102 tegra_spi_copy_spi_rxbuf_to_client_rxbuf(tspi, t);
1103
1104 if (tspi->cur_direction & DATA_DIR_TX)
1105 tspi->cur_pos = tspi->cur_tx_pos;
1106 else
1107 tspi->cur_pos = tspi->cur_rx_pos;
1108
1109 if (tspi->cur_pos == t->len) {
1110 complete(&tspi->xfer_completion);
1111 goto exit;
1112 }
1113
1114 /* Continue transfer in current message */
1115 total_fifo_words = tegra_spi_calculate_curr_xfer_param(tspi->cur_spi,
1116 tspi, t);
1117 if (total_fifo_words > SPI_FIFO_DEPTH)
1118 err = tegra_spi_start_dma_based_transfer(tspi, t);
1119 else
1120 err = tegra_spi_start_cpu_based_transfer(tspi, t);
1121
1122exit:
1123 spin_unlock_irqrestore(&tspi->lock, flags);
1124 return IRQ_HANDLED;
1125}
1126
1127static irqreturn_t tegra_spi_isr_thread(int irq, void *context_data)
1128{
1129 struct tegra_spi_data *tspi = context_data;
1130
1131 if (!tspi->is_curr_dma_xfer)
1132 return handle_cpu_based_xfer(tspi);
1133 return handle_dma_based_xfer(tspi);
1134}
1135
1136static irqreturn_t tegra_spi_isr(int irq, void *context_data)
1137{
1138 struct tegra_spi_data *tspi = context_data;
1139
1140 tspi->status_reg = tegra_spi_readl(tspi, SPI_FIFO_STATUS);
1141 if (tspi->cur_direction & DATA_DIR_TX)
1142 tspi->tx_status = tspi->status_reg &
1143 (SPI_TX_FIFO_UNF | SPI_TX_FIFO_OVF);
1144
1145 if (tspi->cur_direction & DATA_DIR_RX)
1146 tspi->rx_status = tspi->status_reg &
1147 (SPI_RX_FIFO_OVF | SPI_RX_FIFO_UNF);
1148 tegra_spi_clear_status(tspi);
1149
1150 return IRQ_WAKE_THREAD;
1151}
1152
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -07001153static struct tegra_spi_soc_data tegra114_spi_soc_data = {
1154 .has_intr_mask_reg = false,
1155};
1156
1157static struct tegra_spi_soc_data tegra124_spi_soc_data = {
1158 .has_intr_mask_reg = false,
1159};
1160
1161static struct tegra_spi_soc_data tegra210_spi_soc_data = {
1162 .has_intr_mask_reg = true,
1163};
1164
Jingoo Han0ac83f32014-05-07 16:51:02 +09001165static const struct of_device_id tegra_spi_of_match[] = {
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -07001166 {
1167 .compatible = "nvidia,tegra114-spi",
1168 .data = &tegra114_spi_soc_data,
1169 }, {
1170 .compatible = "nvidia,tegra124-spi",
1171 .data = &tegra124_spi_soc_data,
1172 }, {
1173 .compatible = "nvidia,tegra210-spi",
1174 .data = &tegra210_spi_soc_data,
1175 },
Laxman Dewanganf333a332013-02-22 18:07:39 +05301176 {}
1177};
1178MODULE_DEVICE_TABLE(of, tegra_spi_of_match);
1179
1180static int tegra_spi_probe(struct platform_device *pdev)
1181{
1182 struct spi_master *master;
1183 struct tegra_spi_data *tspi;
1184 struct resource *r;
1185 int ret, spi_irq;
Sowjanya Komatinenid9088962019-04-04 17:14:06 -07001186 int bus_num;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301187
1188 master = spi_alloc_master(&pdev->dev, sizeof(*tspi));
1189 if (!master) {
1190 dev_err(&pdev->dev, "master allocation failed\n");
1191 return -ENOMEM;
1192 }
Jingoo Han24b5a822013-05-23 19:20:40 +09001193 platform_set_drvdata(pdev, master);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301194 tspi = spi_master_get_devdata(master);
1195
Axel Lin383840d2014-02-10 21:48:16 +08001196 if (of_property_read_u32(pdev->dev.of_node, "spi-max-frequency",
1197 &master->max_speed_hz))
1198 master->max_speed_hz = 25000000; /* 25MHz */
Laxman Dewanganf333a332013-02-22 18:07:39 +05301199
1200 /* the spi->mode bits understood by this driver: */
Sowjanya Komatineni9877a342019-04-04 17:14:07 -07001201 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_LSB_FIRST |
Sowjanya Komatineni9d199232019-04-04 17:14:08 -07001202 SPI_TX_DUAL | SPI_RX_DUAL | SPI_3WIRE;
Sowjanya Komatinenif0a0bc92019-04-04 17:14:05 -07001203 master->bits_per_word_mask = SPI_BPW_RANGE_MASK(4, 32);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301204 master->setup = tegra_spi_setup;
1205 master->transfer_one_message = tegra_spi_transfer_one_message;
1206 master->num_chipselect = MAX_CHIP_SELECT;
Mark Brown612aa5c2013-07-28 15:37:31 +01001207 master->auto_runtime_pm = true;
Sowjanya Komatinenid9088962019-04-04 17:14:06 -07001208 bus_num = of_alias_get_id(pdev->dev.of_node, "spi");
1209 if (bus_num >= 0)
1210 master->bus_num = bus_num;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301211
1212 tspi->master = master;
1213 tspi->dev = &pdev->dev;
1214 spin_lock_init(&tspi->lock);
1215
Sowjanya Komatinenifa28fd32019-04-04 17:14:12 -07001216 tspi->soc_data = of_device_get_match_data(&pdev->dev);
1217 if (!tspi->soc_data) {
1218 dev_err(&pdev->dev, "unsupported tegra\n");
1219 ret = -ENODEV;
1220 goto exit_free_master;
1221 }
1222
Laxman Dewanganf333a332013-02-22 18:07:39 +05301223 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301224 tspi->base = devm_ioremap_resource(&pdev->dev, r);
1225 if (IS_ERR(tspi->base)) {
1226 ret = PTR_ERR(tspi->base);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301227 goto exit_free_master;
1228 }
Laurent Navet5f7f54b2013-05-14 12:07:12 +02001229 tspi->phys = r->start;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301230
1231 spi_irq = platform_get_irq(pdev, 0);
1232 tspi->irq = spi_irq;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301233
1234 tspi->clk = devm_clk_get(&pdev->dev, "spi");
1235 if (IS_ERR(tspi->clk)) {
1236 dev_err(&pdev->dev, "can not get clock\n");
1237 ret = PTR_ERR(tspi->clk);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001238 goto exit_free_master;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301239 }
1240
Philipp Zabeld006edb2017-07-19 17:26:23 +02001241 tspi->rst = devm_reset_control_get_exclusive(&pdev->dev, "spi");
Stephen Warrenff2251e2013-11-06 16:31:24 -07001242 if (IS_ERR(tspi->rst)) {
1243 dev_err(&pdev->dev, "can not get reset\n");
1244 ret = PTR_ERR(tspi->rst);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001245 goto exit_free_master;
Stephen Warrenff2251e2013-11-06 16:31:24 -07001246 }
1247
Laxman Dewanganf333a332013-02-22 18:07:39 +05301248 tspi->max_buf_size = SPI_FIFO_DEPTH << 2;
1249 tspi->dma_buf_size = DEFAULT_SPI_DMA_BUF_LEN;
1250
Stephen Warrena915d152013-11-11 13:13:47 -07001251 ret = tegra_spi_init_dma_param(tspi, true);
1252 if (ret < 0)
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001253 goto exit_free_master;
Stephen Warrena915d152013-11-11 13:13:47 -07001254 ret = tegra_spi_init_dma_param(tspi, false);
1255 if (ret < 0)
1256 goto exit_rx_dma_free;
1257 tspi->max_buf_size = tspi->dma_buf_size;
1258 init_completion(&tspi->tx_dma_complete);
1259 init_completion(&tspi->rx_dma_complete);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301260
1261 init_completion(&tspi->xfer_completion);
1262
1263 pm_runtime_enable(&pdev->dev);
1264 if (!pm_runtime_enabled(&pdev->dev)) {
1265 ret = tegra_spi_runtime_resume(&pdev->dev);
1266 if (ret)
1267 goto exit_pm_disable;
1268 }
1269
1270 ret = pm_runtime_get_sync(&pdev->dev);
1271 if (ret < 0) {
1272 dev_err(&pdev->dev, "pm runtime get failed, e = %d\n", ret);
1273 goto exit_pm_disable;
1274 }
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001275
1276 reset_control_assert(tspi->rst);
1277 udelay(2);
1278 reset_control_deassert(tspi->rst);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301279 tspi->def_command1_reg = SPI_M_S;
1280 tegra_spi_writel(tspi, tspi->def_command1_reg, SPI_COMMAND1);
1281 pm_runtime_put(&pdev->dev);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001282 ret = request_threaded_irq(tspi->irq, tegra_spi_isr,
1283 tegra_spi_isr_thread, IRQF_ONESHOT,
1284 dev_name(&pdev->dev), tspi);
1285 if (ret < 0) {
1286 dev_err(&pdev->dev, "Failed to register ISR for IRQ %d\n",
1287 tspi->irq);
1288 goto exit_pm_disable;
1289 }
Laxman Dewanganf333a332013-02-22 18:07:39 +05301290
1291 master->dev.of_node = pdev->dev.of_node;
Jingoo Han5c809642013-09-24 13:49:24 +09001292 ret = devm_spi_register_master(&pdev->dev, master);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301293 if (ret < 0) {
1294 dev_err(&pdev->dev, "can not register to master err %d\n", ret);
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001295 goto exit_free_irq;
Laxman Dewanganf333a332013-02-22 18:07:39 +05301296 }
1297 return ret;
1298
Sowjanya Komatineni01919492019-03-26 22:56:32 -07001299exit_free_irq:
1300 free_irq(spi_irq, tspi);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301301exit_pm_disable:
1302 pm_runtime_disable(&pdev->dev);
1303 if (!pm_runtime_status_suspended(&pdev->dev))
1304 tegra_spi_runtime_suspend(&pdev->dev);
1305 tegra_spi_deinit_dma_param(tspi, false);
1306exit_rx_dma_free:
1307 tegra_spi_deinit_dma_param(tspi, true);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301308exit_free_master:
1309 spi_master_put(master);
1310 return ret;
1311}
1312
1313static int tegra_spi_remove(struct platform_device *pdev)
1314{
Jingoo Han24b5a822013-05-23 19:20:40 +09001315 struct spi_master *master = platform_get_drvdata(pdev);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301316 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1317
1318 free_irq(tspi->irq, tspi);
Laxman Dewanganf333a332013-02-22 18:07:39 +05301319
1320 if (tspi->tx_dma_chan)
1321 tegra_spi_deinit_dma_param(tspi, false);
1322
1323 if (tspi->rx_dma_chan)
1324 tegra_spi_deinit_dma_param(tspi, true);
1325
1326 pm_runtime_disable(&pdev->dev);
1327 if (!pm_runtime_status_suspended(&pdev->dev))
1328 tegra_spi_runtime_suspend(&pdev->dev);
1329
1330 return 0;
1331}
1332
1333#ifdef CONFIG_PM_SLEEP
1334static int tegra_spi_suspend(struct device *dev)
1335{
1336 struct spi_master *master = dev_get_drvdata(dev);
1337
1338 return spi_master_suspend(master);
1339}
1340
1341static int tegra_spi_resume(struct device *dev)
1342{
1343 struct spi_master *master = dev_get_drvdata(dev);
1344 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1345 int ret;
1346
1347 ret = pm_runtime_get_sync(dev);
1348 if (ret < 0) {
1349 dev_err(dev, "pm runtime failed, e = %d\n", ret);
1350 return ret;
1351 }
1352 tegra_spi_writel(tspi, tspi->command1_reg, SPI_COMMAND1);
1353 pm_runtime_put(dev);
1354
1355 return spi_master_resume(master);
1356}
1357#endif
1358
1359static int tegra_spi_runtime_suspend(struct device *dev)
1360{
1361 struct spi_master *master = dev_get_drvdata(dev);
1362 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1363
1364 /* Flush all write which are in PPSB queue by reading back */
1365 tegra_spi_readl(tspi, SPI_COMMAND1);
1366
1367 clk_disable_unprepare(tspi->clk);
1368 return 0;
1369}
1370
1371static int tegra_spi_runtime_resume(struct device *dev)
1372{
1373 struct spi_master *master = dev_get_drvdata(dev);
1374 struct tegra_spi_data *tspi = spi_master_get_devdata(master);
1375 int ret;
1376
1377 ret = clk_prepare_enable(tspi->clk);
1378 if (ret < 0) {
1379 dev_err(tspi->dev, "clk_prepare failed: %d\n", ret);
1380 return ret;
1381 }
1382 return 0;
1383}
1384
1385static const struct dev_pm_ops tegra_spi_pm_ops = {
1386 SET_RUNTIME_PM_OPS(tegra_spi_runtime_suspend,
1387 tegra_spi_runtime_resume, NULL)
1388 SET_SYSTEM_SLEEP_PM_OPS(tegra_spi_suspend, tegra_spi_resume)
1389};
1390static struct platform_driver tegra_spi_driver = {
1391 .driver = {
1392 .name = "spi-tegra114",
Laxman Dewanganf333a332013-02-22 18:07:39 +05301393 .pm = &tegra_spi_pm_ops,
1394 .of_match_table = tegra_spi_of_match,
1395 },
1396 .probe = tegra_spi_probe,
1397 .remove = tegra_spi_remove,
1398};
1399module_platform_driver(tegra_spi_driver);
1400
1401MODULE_ALIAS("platform:spi-tegra114");
1402MODULE_DESCRIPTION("NVIDIA Tegra114 SPI Controller Driver");
1403MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
1404MODULE_LICENSE("GPL v2");