blob: 1389fefe8814105a857c0dcb24d5a64485080ca5 [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 *
4 * Copyright (c) 2009, Intel Corporation.
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 along
16 * with this program; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20#include <linux/dma-mapping.h>
21#include <linux/dmaengine.h>
22#include <linux/interrupt.h>
23#include <linux/slab.h>
24#include <linux/spi/spi.h>
Viresh Kumar258aea72012-02-01 16:12:19 +053025#include <linux/types.h>
Grant Likely568a60e2011-02-28 12:47:12 -070026
Grant Likelyca632f52011-06-06 01:16:30 -060027#include "spi-dw.h"
Feng Tang7063c0d2010-12-24 13:59:11 +080028
29#ifdef CONFIG_SPI_DW_MID_DMA
30#include <linux/intel_mid_dma.h>
31#include <linux/pci.h>
32
33struct mid_dma {
34 struct intel_mid_dma_slave dmas_tx;
35 struct intel_mid_dma_slave dmas_rx;
36};
37
38static bool mid_spi_dma_chan_filter(struct dma_chan *chan, void *param)
39{
40 struct dw_spi *dws = param;
41
42 return dws->dmac && (&dws->dmac->dev == chan->device->dev);
43}
44
45static int mid_spi_dma_init(struct dw_spi *dws)
46{
47 struct mid_dma *dw_dma = dws->dma_priv;
48 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
53 * be the DMA controller of either Moorestown or Medfield
54 */
55 dws->dmac = pci_get_device(PCI_VENDOR_ID_INTEL, 0x0813, NULL);
56 if (!dws->dmac)
57 dws->dmac = pci_get_device(PCI_VENDOR_ID_INTEL, 0x0827, NULL);
58
59 dma_cap_zero(mask);
60 dma_cap_set(DMA_SLAVE, mask);
61
62 /* 1. Init rx channel */
63 dws->rxchan = dma_request_channel(mask, mid_spi_dma_chan_filter, dws);
64 if (!dws->rxchan)
65 goto err_exit;
66 rxs = &dw_dma->dmas_rx;
67 rxs->hs_mode = LNW_DMA_HW_HS;
68 rxs->cfg_mode = LNW_DMA_PER_TO_MEM;
69 dws->rxchan->private = rxs;
70
71 /* 2. Init tx channel */
72 dws->txchan = dma_request_channel(mask, mid_spi_dma_chan_filter, dws);
73 if (!dws->txchan)
74 goto free_rxchan;
75 txs = &dw_dma->dmas_tx;
76 txs->hs_mode = LNW_DMA_HW_HS;
77 txs->cfg_mode = LNW_DMA_MEM_TO_PER;
78 dws->txchan->private = txs;
79
80 dws->dma_inited = 1;
81 return 0;
82
83free_rxchan:
84 dma_release_channel(dws->rxchan);
85err_exit:
86 return -1;
87
88}
89
90static void mid_spi_dma_exit(struct dw_spi *dws)
91{
Andy Shevchenko0ee097a2014-09-12 15:11:58 +030092 if (!dws->dma_inited)
93 return;
Andy Shevchenko9fa1d75b2014-09-18 20:08:53 +030094
95 dmaengine_terminate_all(dws->txchan);
Feng Tang7063c0d2010-12-24 13:59:11 +080096 dma_release_channel(dws->txchan);
Andy Shevchenko9fa1d75b2014-09-18 20:08:53 +030097
98 dmaengine_terminate_all(dws->rxchan);
Feng Tang7063c0d2010-12-24 13:59:11 +080099 dma_release_channel(dws->rxchan);
100}
101
102/*
103 * dws->dma_chan_done is cleared before the dma transfer starts,
104 * callback for rx/tx channel will each increment it by 1.
105 * Reaching 2 means the whole spi transaction is done.
106 */
107static void dw_spi_dma_done(void *arg)
108{
109 struct dw_spi *dws = arg;
110
111 if (++dws->dma_chan_done != 2)
112 return;
113 dw_spi_xfer_done(dws);
114}
115
116static int mid_spi_dma_transfer(struct dw_spi *dws, int cs_change)
117{
118 struct dma_async_tx_descriptor *txdesc = NULL, *rxdesc = NULL;
119 struct dma_chan *txchan, *rxchan;
120 struct dma_slave_config txconf, rxconf;
121 u16 dma_ctrl = 0;
122
123 /* 1. setup DMA related registers */
124 if (cs_change) {
125 spi_enable_chip(dws, 0);
H Hartley Sweeten7eb187b2011-09-20 11:06:17 -0700126 dw_writew(dws, DW_SPI_DMARDLR, 0xf);
127 dw_writew(dws, DW_SPI_DMATDLR, 0x10);
Feng Tang7063c0d2010-12-24 13:59:11 +0800128 if (dws->tx_dma)
129 dma_ctrl |= 0x2;
130 if (dws->rx_dma)
131 dma_ctrl |= 0x1;
H Hartley Sweeten7eb187b2011-09-20 11:06:17 -0700132 dw_writew(dws, DW_SPI_DMACR, dma_ctrl);
Feng Tang7063c0d2010-12-24 13:59:11 +0800133 spi_enable_chip(dws, 1);
134 }
135
136 dws->dma_chan_done = 0;
137 txchan = dws->txchan;
138 rxchan = dws->rxchan;
139
140 /* 2. Prepare the TX dma transfer */
Vinod Koula485df42011-10-14 10:47:38 +0530141 txconf.direction = DMA_MEM_TO_DEV;
Feng Tang7063c0d2010-12-24 13:59:11 +0800142 txconf.dst_addr = dws->dma_addr;
143 txconf.dst_maxburst = LNW_DMA_MSIZE_16;
144 txconf.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
Andy Shevchenko3f8ae852014-09-18 20:08:51 +0300145 txconf.dst_addr_width = dws->dma_width;
Viresh Kumar258aea72012-02-01 16:12:19 +0530146 txconf.device_fc = false;
Feng Tang7063c0d2010-12-24 13:59:11 +0800147
148 txchan->device->device_control(txchan, DMA_SLAVE_CONFIG,
149 (unsigned long) &txconf);
150
151 memset(&dws->tx_sgl, 0, sizeof(dws->tx_sgl));
152 dws->tx_sgl.dma_address = dws->tx_dma;
153 dws->tx_sgl.length = dws->len;
154
Alexandre Bounine16052822012-03-08 16:11:18 -0500155 txdesc = dmaengine_prep_slave_sg(txchan,
Feng Tang7063c0d2010-12-24 13:59:11 +0800156 &dws->tx_sgl,
157 1,
Vinod Koula485df42011-10-14 10:47:38 +0530158 DMA_MEM_TO_DEV,
Feng Tang7063c0d2010-12-24 13:59:11 +0800159 DMA_PREP_INTERRUPT | DMA_COMPL_SKIP_DEST_UNMAP);
160 txdesc->callback = dw_spi_dma_done;
161 txdesc->callback_param = dws;
162
163 /* 3. Prepare the RX dma transfer */
Vinod Koula485df42011-10-14 10:47:38 +0530164 rxconf.direction = DMA_DEV_TO_MEM;
Feng Tang7063c0d2010-12-24 13:59:11 +0800165 rxconf.src_addr = dws->dma_addr;
166 rxconf.src_maxburst = LNW_DMA_MSIZE_16;
167 rxconf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
Andy Shevchenko3f8ae852014-09-18 20:08:51 +0300168 rxconf.src_addr_width = dws->dma_width;
Viresh Kumar258aea72012-02-01 16:12:19 +0530169 rxconf.device_fc = false;
Feng Tang7063c0d2010-12-24 13:59:11 +0800170
171 rxchan->device->device_control(rxchan, DMA_SLAVE_CONFIG,
172 (unsigned long) &rxconf);
173
174 memset(&dws->rx_sgl, 0, sizeof(dws->rx_sgl));
175 dws->rx_sgl.dma_address = dws->rx_dma;
176 dws->rx_sgl.length = dws->len;
177
Alexandre Bounine16052822012-03-08 16:11:18 -0500178 rxdesc = dmaengine_prep_slave_sg(rxchan,
Feng Tang7063c0d2010-12-24 13:59:11 +0800179 &dws->rx_sgl,
180 1,
Vinod Koula485df42011-10-14 10:47:38 +0530181 DMA_DEV_TO_MEM,
Feng Tang7063c0d2010-12-24 13:59:11 +0800182 DMA_PREP_INTERRUPT | DMA_COMPL_SKIP_DEST_UNMAP);
183 rxdesc->callback = dw_spi_dma_done;
184 rxdesc->callback_param = dws;
185
186 /* rx must be started before tx due to spi instinct */
187 rxdesc->tx_submit(rxdesc);
188 txdesc->tx_submit(txdesc);
189 return 0;
190}
191
192static struct dw_spi_dma_ops mid_dma_ops = {
193 .dma_init = mid_spi_dma_init,
194 .dma_exit = mid_spi_dma_exit,
195 .dma_transfer = mid_spi_dma_transfer,
196};
197#endif
198
199/* Some specific info for SPI0 controller on Moorestown */
200
201/* HW info for MRST CLk Control Unit, one 32b reg */
202#define MRST_SPI_CLK_BASE 100000000 /* 100m */
203#define MRST_CLK_SPI0_REG 0xff11d86c
204#define CLK_SPI_BDIV_OFFSET 0
205#define CLK_SPI_BDIV_MASK 0x00000007
206#define CLK_SPI_CDIV_OFFSET 9
207#define CLK_SPI_CDIV_MASK 0x00000e00
208#define CLK_SPI_DISABLE_OFFSET 8
209
210int dw_spi_mid_init(struct dw_spi *dws)
211{
H Hartley Sweeten7eb187b2011-09-20 11:06:17 -0700212 void __iomem *clk_reg;
213 u32 clk_cdiv;
Feng Tang7063c0d2010-12-24 13:59:11 +0800214
215 clk_reg = ioremap_nocache(MRST_CLK_SPI0_REG, 16);
216 if (!clk_reg)
217 return -ENOMEM;
218
219 /* get SPI controller operating freq info */
220 clk_cdiv = (readl(clk_reg) & CLK_SPI_CDIV_MASK) >> CLK_SPI_CDIV_OFFSET;
221 dws->max_freq = MRST_SPI_CLK_BASE / (clk_cdiv + 1);
222 iounmap(clk_reg);
223
224 dws->num_cs = 16;
Feng Tang7063c0d2010-12-24 13:59:11 +0800225
226#ifdef CONFIG_SPI_DW_MID_DMA
227 dws->dma_priv = kzalloc(sizeof(struct mid_dma), GFP_KERNEL);
228 if (!dws->dma_priv)
229 return -ENOMEM;
230 dws->dma_ops = &mid_dma_ops;
231#endif
232 return 0;
233}