blob: 3729cdd84e94bfe0a650650e83b184c58f756db7 [file] [log] [blame]
Feng Tang7063c0d2010-12-24 13:59:11 +08001/*
Grant Likelyca632f52011-06-06 01:16:30 -06002 * Special handling for DW core on Intel MID platform
Feng Tang7063c0d2010-12-24 13:59:11 +08003 *
Andy Shevchenko197e96b2014-09-12 15:12:01 +03004 * Copyright (c) 2009, 2014 Intel Corporation.
Feng Tang7063c0d2010-12-24 13:59:11 +08005 *
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.
Feng Tang7063c0d2010-12-24 13:59:11 +080014 */
15
16#include <linux/dma-mapping.h>
17#include <linux/dmaengine.h>
18#include <linux/interrupt.h>
19#include <linux/slab.h>
20#include <linux/spi/spi.h>
Viresh Kumar258aea72012-02-01 16:12:19 +053021#include <linux/types.h>
Grant Likely568a60e2011-02-28 12:47:12 -070022
Grant Likelyca632f52011-06-06 01:16:30 -060023#include "spi-dw.h"
Feng Tang7063c0d2010-12-24 13:59:11 +080024
25#ifdef CONFIG_SPI_DW_MID_DMA
26#include <linux/intel_mid_dma.h>
27#include <linux/pci.h>
28
Andy Shevchenko30c8eb52014-10-28 18:25:02 +020029#define RX_BUSY 0
30#define TX_BUSY 1
31
Feng Tang7063c0d2010-12-24 13:59:11 +080032struct mid_dma {
33 struct intel_mid_dma_slave dmas_tx;
34 struct intel_mid_dma_slave dmas_rx;
35};
36
37static bool mid_spi_dma_chan_filter(struct dma_chan *chan, void *param)
38{
39 struct dw_spi *dws = param;
40
Andy Shevchenkob89e9c82014-09-12 15:12:00 +030041 return dws->dma_dev == chan->device->dev;
Feng Tang7063c0d2010-12-24 13:59:11 +080042}
43
44static int mid_spi_dma_init(struct dw_spi *dws)
45{
46 struct mid_dma *dw_dma = dws->dma_priv;
Andy Shevchenkob89e9c82014-09-12 15:12:00 +030047 struct pci_dev *dma_dev;
Feng Tang7063c0d2010-12-24 13:59:11 +080048 struct intel_mid_dma_slave *rxs, *txs;
49 dma_cap_mask_t mask;
50
51 /*
52 * Get pci device for DMA controller, currently it could only
Andy Shevchenkoea092452014-09-12 15:11:59 +030053 * be the DMA controller of Medfield
Feng Tang7063c0d2010-12-24 13:59:11 +080054 */
Andy Shevchenkob89e9c82014-09-12 15:12:00 +030055 dma_dev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x0827, NULL);
56 if (!dma_dev)
57 return -ENODEV;
58
59 dws->dma_dev = &dma_dev->dev;
Feng Tang7063c0d2010-12-24 13:59:11 +080060
61 dma_cap_zero(mask);
62 dma_cap_set(DMA_SLAVE, mask);
63
64 /* 1. Init rx channel */
65 dws->rxchan = dma_request_channel(mask, mid_spi_dma_chan_filter, dws);
66 if (!dws->rxchan)
67 goto err_exit;
68 rxs = &dw_dma->dmas_rx;
69 rxs->hs_mode = LNW_DMA_HW_HS;
70 rxs->cfg_mode = LNW_DMA_PER_TO_MEM;
71 dws->rxchan->private = rxs;
72
73 /* 2. Init tx channel */
74 dws->txchan = dma_request_channel(mask, mid_spi_dma_chan_filter, dws);
75 if (!dws->txchan)
76 goto free_rxchan;
77 txs = &dw_dma->dmas_tx;
78 txs->hs_mode = LNW_DMA_HW_HS;
79 txs->cfg_mode = LNW_DMA_MEM_TO_PER;
80 dws->txchan->private = txs;
81
82 dws->dma_inited = 1;
83 return 0;
84
85free_rxchan:
86 dma_release_channel(dws->rxchan);
87err_exit:
Andy Shevchenkob89e9c82014-09-12 15:12:00 +030088 return -EBUSY;
Feng Tang7063c0d2010-12-24 13:59:11 +080089}
90
91static void mid_spi_dma_exit(struct dw_spi *dws)
92{
Andy Shevchenkofb578622014-09-12 15:11:58 +030093 if (!dws->dma_inited)
94 return;
Andy Shevchenko8e45ef62014-09-18 20:08:53 +030095
96 dmaengine_terminate_all(dws->txchan);
Feng Tang7063c0d2010-12-24 13:59:11 +080097 dma_release_channel(dws->txchan);
Andy Shevchenko8e45ef62014-09-18 20:08:53 +030098
99 dmaengine_terminate_all(dws->rxchan);
Feng Tang7063c0d2010-12-24 13:59:11 +0800100 dma_release_channel(dws->rxchan);
101}
102
Andy Shevchenkof051fc82015-03-09 16:48:47 +0200103static irqreturn_t dma_transfer(struct dw_spi *dws)
104{
105 u16 irq_status = dw_readw(dws, DW_SPI_ISR);
106
107 if (!irq_status)
108 return IRQ_NONE;
109
110 dw_readw(dws, DW_SPI_ICR);
111 spi_reset_chip(dws);
112
113 dev_err(&dws->master->dev, "%s: FIFO overrun/underrun\n", __func__);
114 dws->master->cur_msg->status = -EIO;
115 spi_finalize_current_transfer(dws->master);
116 return IRQ_HANDLED;
117}
118
Andy Shevchenkoe31abce2015-03-09 16:48:45 +0200119static enum dma_slave_buswidth convert_dma_width(u32 dma_width) {
120 if (dma_width == 1)
121 return DMA_SLAVE_BUSWIDTH_1_BYTE;
122 else if (dma_width == 2)
123 return DMA_SLAVE_BUSWIDTH_2_BYTES;
124
125 return DMA_SLAVE_BUSWIDTH_UNDEFINED;
126}
127
Feng Tang7063c0d2010-12-24 13:59:11 +0800128/*
Andy Shevchenko30c8eb52014-10-28 18:25:02 +0200129 * dws->dma_chan_busy is set before the dma transfer starts, callback for tx
130 * channel will clear a corresponding bit.
Feng Tang7063c0d2010-12-24 13:59:11 +0800131 */
Andy Shevchenko30c8eb52014-10-28 18:25:02 +0200132static void dw_spi_dma_tx_done(void *arg)
Feng Tang7063c0d2010-12-24 13:59:11 +0800133{
134 struct dw_spi *dws = arg;
135
Andy Shevchenko854d2f22015-03-06 14:42:01 +0200136 clear_bit(TX_BUSY, &dws->dma_chan_busy);
137 if (test_bit(RX_BUSY, &dws->dma_chan_busy))
Feng Tang7063c0d2010-12-24 13:59:11 +0800138 return;
Andy Shevchenkoc22c62d2015-03-02 14:58:57 +0200139 spi_finalize_current_transfer(dws->master);
Feng Tang7063c0d2010-12-24 13:59:11 +0800140}
141
Andy Shevchenkoa5c2db92014-10-28 18:25:01 +0200142static struct dma_async_tx_descriptor *dw_spi_dma_prepare_tx(struct dw_spi *dws)
Feng Tang7063c0d2010-12-24 13:59:11 +0800143{
Andy Shevchenkoa5c2db92014-10-28 18:25:01 +0200144 struct dma_slave_config txconf;
145 struct dma_async_tx_descriptor *txdesc;
Feng Tang7063c0d2010-12-24 13:59:11 +0800146
Andy Shevchenko30c8eb52014-10-28 18:25:02 +0200147 if (!dws->tx_dma)
148 return NULL;
149
Vinod Koula485df42011-10-14 10:47:38 +0530150 txconf.direction = DMA_MEM_TO_DEV;
Feng Tang7063c0d2010-12-24 13:59:11 +0800151 txconf.dst_addr = dws->dma_addr;
152 txconf.dst_maxburst = LNW_DMA_MSIZE_16;
153 txconf.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
Andy Shevchenkoe31abce2015-03-09 16:48:45 +0200154 txconf.dst_addr_width = convert_dma_width(dws->dma_width);
Viresh Kumar258aea72012-02-01 16:12:19 +0530155 txconf.device_fc = false;
Feng Tang7063c0d2010-12-24 13:59:11 +0800156
Andy Shevchenko2a285292014-10-02 16:31:08 +0300157 dmaengine_slave_config(dws->txchan, &txconf);
Feng Tang7063c0d2010-12-24 13:59:11 +0800158
159 memset(&dws->tx_sgl, 0, sizeof(dws->tx_sgl));
160 dws->tx_sgl.dma_address = dws->tx_dma;
161 dws->tx_sgl.length = dws->len;
162
Andy Shevchenko2a285292014-10-02 16:31:08 +0300163 txdesc = dmaengine_prep_slave_sg(dws->txchan,
Feng Tang7063c0d2010-12-24 13:59:11 +0800164 &dws->tx_sgl,
165 1,
Vinod Koula485df42011-10-14 10:47:38 +0530166 DMA_MEM_TO_DEV,
Andy Shevchenkof7477c22014-10-02 16:31:09 +0300167 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
Andy Shevchenkoc9dafb22015-03-02 20:15:58 +0200168 if (!txdesc)
169 return NULL;
170
Andy Shevchenko30c8eb52014-10-28 18:25:02 +0200171 txdesc->callback = dw_spi_dma_tx_done;
Feng Tang7063c0d2010-12-24 13:59:11 +0800172 txdesc->callback_param = dws;
173
Andy Shevchenkoa5c2db92014-10-28 18:25:01 +0200174 return txdesc;
175}
176
Andy Shevchenko30c8eb52014-10-28 18:25:02 +0200177/*
178 * dws->dma_chan_busy is set before the dma transfer starts, callback for rx
179 * channel will clear a corresponding bit.
180 */
181static void dw_spi_dma_rx_done(void *arg)
182{
183 struct dw_spi *dws = arg;
184
Andy Shevchenko854d2f22015-03-06 14:42:01 +0200185 clear_bit(RX_BUSY, &dws->dma_chan_busy);
186 if (test_bit(TX_BUSY, &dws->dma_chan_busy))
Andy Shevchenko30c8eb52014-10-28 18:25:02 +0200187 return;
Andy Shevchenkoc22c62d2015-03-02 14:58:57 +0200188 spi_finalize_current_transfer(dws->master);
Andy Shevchenko30c8eb52014-10-28 18:25:02 +0200189}
190
Andy Shevchenkoa5c2db92014-10-28 18:25:01 +0200191static struct dma_async_tx_descriptor *dw_spi_dma_prepare_rx(struct dw_spi *dws)
192{
193 struct dma_slave_config rxconf;
194 struct dma_async_tx_descriptor *rxdesc;
195
Andy Shevchenko30c8eb52014-10-28 18:25:02 +0200196 if (!dws->rx_dma)
197 return NULL;
198
Vinod Koula485df42011-10-14 10:47:38 +0530199 rxconf.direction = DMA_DEV_TO_MEM;
Feng Tang7063c0d2010-12-24 13:59:11 +0800200 rxconf.src_addr = dws->dma_addr;
201 rxconf.src_maxburst = LNW_DMA_MSIZE_16;
202 rxconf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
Andy Shevchenkoe31abce2015-03-09 16:48:45 +0200203 rxconf.src_addr_width = convert_dma_width(dws->dma_width);
Viresh Kumar258aea72012-02-01 16:12:19 +0530204 rxconf.device_fc = false;
Feng Tang7063c0d2010-12-24 13:59:11 +0800205
Andy Shevchenko2a285292014-10-02 16:31:08 +0300206 dmaengine_slave_config(dws->rxchan, &rxconf);
Feng Tang7063c0d2010-12-24 13:59:11 +0800207
208 memset(&dws->rx_sgl, 0, sizeof(dws->rx_sgl));
209 dws->rx_sgl.dma_address = dws->rx_dma;
210 dws->rx_sgl.length = dws->len;
211
Andy Shevchenko2a285292014-10-02 16:31:08 +0300212 rxdesc = dmaengine_prep_slave_sg(dws->rxchan,
Feng Tang7063c0d2010-12-24 13:59:11 +0800213 &dws->rx_sgl,
214 1,
Vinod Koula485df42011-10-14 10:47:38 +0530215 DMA_DEV_TO_MEM,
Andy Shevchenkof7477c22014-10-02 16:31:09 +0300216 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
Andy Shevchenkoc9dafb22015-03-02 20:15:58 +0200217 if (!rxdesc)
218 return NULL;
219
Andy Shevchenko30c8eb52014-10-28 18:25:02 +0200220 rxdesc->callback = dw_spi_dma_rx_done;
Feng Tang7063c0d2010-12-24 13:59:11 +0800221 rxdesc->callback_param = dws;
222
Andy Shevchenkoa5c2db92014-10-28 18:25:01 +0200223 return rxdesc;
224}
225
Andy Shevchenko9f145382015-03-09 16:48:46 +0200226static int mid_spi_dma_setup(struct dw_spi *dws)
Andy Shevchenkoa5c2db92014-10-28 18:25:01 +0200227{
228 u16 dma_ctrl = 0;
229
Andy Shevchenkoa5c2db92014-10-28 18:25:01 +0200230 dw_writew(dws, DW_SPI_DMARDLR, 0xf);
231 dw_writew(dws, DW_SPI_DMATDLR, 0x10);
232
233 if (dws->tx_dma)
234 dma_ctrl |= SPI_DMA_TDMAE;
235 if (dws->rx_dma)
236 dma_ctrl |= SPI_DMA_RDMAE;
237 dw_writew(dws, DW_SPI_DMACR, dma_ctrl);
238
Andy Shevchenkof051fc82015-03-09 16:48:47 +0200239 /* Set the interrupt mask */
240 spi_umask_intr(dws, SPI_INT_TXOI | SPI_INT_RXUI | SPI_INT_RXOI);
241
242 dws->transfer_handler = dma_transfer;
243
Andy Shevchenko9f145382015-03-09 16:48:46 +0200244 return 0;
Andy Shevchenkoa5c2db92014-10-28 18:25:01 +0200245}
246
Andy Shevchenko9f145382015-03-09 16:48:46 +0200247static int mid_spi_dma_transfer(struct dw_spi *dws)
Andy Shevchenkoa5c2db92014-10-28 18:25:01 +0200248{
249 struct dma_async_tx_descriptor *txdesc, *rxdesc;
250
Andy Shevchenko9f145382015-03-09 16:48:46 +0200251 /* Prepare the TX dma transfer */
Andy Shevchenkoa5c2db92014-10-28 18:25:01 +0200252 txdesc = dw_spi_dma_prepare_tx(dws);
253
Andy Shevchenko9f145382015-03-09 16:48:46 +0200254 /* Prepare the RX dma transfer */
Andy Shevchenkoa5c2db92014-10-28 18:25:01 +0200255 rxdesc = dw_spi_dma_prepare_rx(dws);
256
Feng Tang7063c0d2010-12-24 13:59:11 +0800257 /* rx must be started before tx due to spi instinct */
Andy Shevchenko30c8eb52014-10-28 18:25:02 +0200258 if (rxdesc) {
259 set_bit(RX_BUSY, &dws->dma_chan_busy);
260 dmaengine_submit(rxdesc);
261 dma_async_issue_pending(dws->rxchan);
262 }
Andy Shevchenkof7477c22014-10-02 16:31:09 +0300263
Andy Shevchenko30c8eb52014-10-28 18:25:02 +0200264 if (txdesc) {
265 set_bit(TX_BUSY, &dws->dma_chan_busy);
266 dmaengine_submit(txdesc);
267 dma_async_issue_pending(dws->txchan);
268 }
Andy Shevchenkof7477c22014-10-02 16:31:09 +0300269
Feng Tang7063c0d2010-12-24 13:59:11 +0800270 return 0;
271}
272
273static struct dw_spi_dma_ops mid_dma_ops = {
274 .dma_init = mid_spi_dma_init,
275 .dma_exit = mid_spi_dma_exit,
Andy Shevchenko9f145382015-03-09 16:48:46 +0200276 .dma_setup = mid_spi_dma_setup,
Feng Tang7063c0d2010-12-24 13:59:11 +0800277 .dma_transfer = mid_spi_dma_transfer,
278};
279#endif
280
Andy Shevchenkoea092452014-09-12 15:11:59 +0300281/* Some specific info for SPI0 controller on Intel MID */
Feng Tang7063c0d2010-12-24 13:59:11 +0800282
Andy Shevchenkod9c14742015-01-22 17:59:34 +0200283/* HW info for MRST Clk Control Unit, 32b reg per controller */
Feng Tang7063c0d2010-12-24 13:59:11 +0800284#define MRST_SPI_CLK_BASE 100000000 /* 100m */
Andy Shevchenkod9c14742015-01-22 17:59:34 +0200285#define MRST_CLK_SPI_REG 0xff11d86c
Feng Tang7063c0d2010-12-24 13:59:11 +0800286#define CLK_SPI_BDIV_OFFSET 0
287#define CLK_SPI_BDIV_MASK 0x00000007
288#define CLK_SPI_CDIV_OFFSET 9
289#define CLK_SPI_CDIV_MASK 0x00000e00
290#define CLK_SPI_DISABLE_OFFSET 8
291
292int dw_spi_mid_init(struct dw_spi *dws)
293{
H Hartley Sweeten7eb187b2011-09-20 11:06:17 -0700294 void __iomem *clk_reg;
295 u32 clk_cdiv;
Feng Tang7063c0d2010-12-24 13:59:11 +0800296
Andy Shevchenkod9c14742015-01-22 17:59:34 +0200297 clk_reg = ioremap_nocache(MRST_CLK_SPI_REG, 16);
Feng Tang7063c0d2010-12-24 13:59:11 +0800298 if (!clk_reg)
299 return -ENOMEM;
300
Andy Shevchenkod9c14742015-01-22 17:59:34 +0200301 /* Get SPI controller operating freq info */
302 clk_cdiv = readl(clk_reg + dws->bus_num * sizeof(u32));
303 clk_cdiv &= CLK_SPI_CDIV_MASK;
304 clk_cdiv >>= CLK_SPI_CDIV_OFFSET;
Feng Tang7063c0d2010-12-24 13:59:11 +0800305 dws->max_freq = MRST_SPI_CLK_BASE / (clk_cdiv + 1);
Andy Shevchenkod9c14742015-01-22 17:59:34 +0200306
Feng Tang7063c0d2010-12-24 13:59:11 +0800307 iounmap(clk_reg);
308
Feng Tang7063c0d2010-12-24 13:59:11 +0800309#ifdef CONFIG_SPI_DW_MID_DMA
310 dws->dma_priv = kzalloc(sizeof(struct mid_dma), GFP_KERNEL);
311 if (!dws->dma_priv)
312 return -ENOMEM;
313 dws->dma_ops = &mid_dma_ops;
314#endif
315 return 0;
316}