blob: 9ae2eaa228fd83a6a5ea577cf2b7377e73235019 [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
Andy Shevchenkob89e9c82014-09-12 15:12:00 +030042 return dws->dma_dev == chan->device->dev;
Feng Tang7063c0d2010-12-24 13:59:11 +080043}
44
45static int mid_spi_dma_init(struct dw_spi *dws)
46{
47 struct mid_dma *dw_dma = dws->dma_priv;
Andy Shevchenkob89e9c82014-09-12 15:12:00 +030048 struct pci_dev *dma_dev;
Feng Tang7063c0d2010-12-24 13:59:11 +080049 struct intel_mid_dma_slave *rxs, *txs;
50 dma_cap_mask_t mask;
51
52 /*
53 * Get pci device for DMA controller, currently it could only
Andy Shevchenkoea092452014-09-12 15:11:59 +030054 * be the DMA controller of Medfield
Feng Tang7063c0d2010-12-24 13:59:11 +080055 */
Andy Shevchenkob89e9c82014-09-12 15:12:00 +030056 dma_dev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x0827, NULL);
57 if (!dma_dev)
58 return -ENODEV;
59
60 dws->dma_dev = &dma_dev->dev;
Feng Tang7063c0d2010-12-24 13:59:11 +080061
62 dma_cap_zero(mask);
63 dma_cap_set(DMA_SLAVE, mask);
64
65 /* 1. Init rx channel */
66 dws->rxchan = dma_request_channel(mask, mid_spi_dma_chan_filter, dws);
67 if (!dws->rxchan)
68 goto err_exit;
69 rxs = &dw_dma->dmas_rx;
70 rxs->hs_mode = LNW_DMA_HW_HS;
71 rxs->cfg_mode = LNW_DMA_PER_TO_MEM;
72 dws->rxchan->private = rxs;
73
74 /* 2. Init tx channel */
75 dws->txchan = dma_request_channel(mask, mid_spi_dma_chan_filter, dws);
76 if (!dws->txchan)
77 goto free_rxchan;
78 txs = &dw_dma->dmas_tx;
79 txs->hs_mode = LNW_DMA_HW_HS;
80 txs->cfg_mode = LNW_DMA_MEM_TO_PER;
81 dws->txchan->private = txs;
82
83 dws->dma_inited = 1;
84 return 0;
85
86free_rxchan:
87 dma_release_channel(dws->rxchan);
88err_exit:
Andy Shevchenkob89e9c82014-09-12 15:12:00 +030089 return -EBUSY;
Feng Tang7063c0d2010-12-24 13:59:11 +080090}
91
92static void mid_spi_dma_exit(struct dw_spi *dws)
93{
Andy Shevchenkofb578622014-09-12 15:11:58 +030094 if (!dws->dma_inited)
95 return;
Feng Tang7063c0d2010-12-24 13:59:11 +080096 dma_release_channel(dws->txchan);
97 dma_release_channel(dws->rxchan);
98}
99
100/*
101 * dws->dma_chan_done is cleared before the dma transfer starts,
102 * callback for rx/tx channel will each increment it by 1.
103 * Reaching 2 means the whole spi transaction is done.
104 */
105static void dw_spi_dma_done(void *arg)
106{
107 struct dw_spi *dws = arg;
108
109 if (++dws->dma_chan_done != 2)
110 return;
111 dw_spi_xfer_done(dws);
112}
113
114static int mid_spi_dma_transfer(struct dw_spi *dws, int cs_change)
115{
116 struct dma_async_tx_descriptor *txdesc = NULL, *rxdesc = NULL;
117 struct dma_chan *txchan, *rxchan;
118 struct dma_slave_config txconf, rxconf;
119 u16 dma_ctrl = 0;
120
121 /* 1. setup DMA related registers */
122 if (cs_change) {
123 spi_enable_chip(dws, 0);
H Hartley Sweeten7eb187b2011-09-20 11:06:17 -0700124 dw_writew(dws, DW_SPI_DMARDLR, 0xf);
125 dw_writew(dws, DW_SPI_DMATDLR, 0x10);
Feng Tang7063c0d2010-12-24 13:59:11 +0800126 if (dws->tx_dma)
127 dma_ctrl |= 0x2;
128 if (dws->rx_dma)
129 dma_ctrl |= 0x1;
H Hartley Sweeten7eb187b2011-09-20 11:06:17 -0700130 dw_writew(dws, DW_SPI_DMACR, dma_ctrl);
Feng Tang7063c0d2010-12-24 13:59:11 +0800131 spi_enable_chip(dws, 1);
132 }
133
134 dws->dma_chan_done = 0;
135 txchan = dws->txchan;
136 rxchan = dws->rxchan;
137
138 /* 2. Prepare the TX dma transfer */
Vinod Koula485df42011-10-14 10:47:38 +0530139 txconf.direction = DMA_MEM_TO_DEV;
Feng Tang7063c0d2010-12-24 13:59:11 +0800140 txconf.dst_addr = dws->dma_addr;
141 txconf.dst_maxburst = LNW_DMA_MSIZE_16;
142 txconf.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
143 txconf.dst_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
Viresh Kumar258aea72012-02-01 16:12:19 +0530144 txconf.device_fc = false;
Feng Tang7063c0d2010-12-24 13:59:11 +0800145
146 txchan->device->device_control(txchan, DMA_SLAVE_CONFIG,
147 (unsigned long) &txconf);
148
149 memset(&dws->tx_sgl, 0, sizeof(dws->tx_sgl));
150 dws->tx_sgl.dma_address = dws->tx_dma;
151 dws->tx_sgl.length = dws->len;
152
Alexandre Bounine16052822012-03-08 16:11:18 -0500153 txdesc = dmaengine_prep_slave_sg(txchan,
Feng Tang7063c0d2010-12-24 13:59:11 +0800154 &dws->tx_sgl,
155 1,
Vinod Koula485df42011-10-14 10:47:38 +0530156 DMA_MEM_TO_DEV,
Bartlomiej Zolnierkiewicz0776ae72013-10-18 19:35:33 +0200157 DMA_PREP_INTERRUPT);
Feng Tang7063c0d2010-12-24 13:59:11 +0800158 txdesc->callback = dw_spi_dma_done;
159 txdesc->callback_param = dws;
160
161 /* 3. Prepare the RX dma transfer */
Vinod Koula485df42011-10-14 10:47:38 +0530162 rxconf.direction = DMA_DEV_TO_MEM;
Feng Tang7063c0d2010-12-24 13:59:11 +0800163 rxconf.src_addr = dws->dma_addr;
164 rxconf.src_maxburst = LNW_DMA_MSIZE_16;
165 rxconf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
166 rxconf.src_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
Viresh Kumar258aea72012-02-01 16:12:19 +0530167 rxconf.device_fc = false;
Feng Tang7063c0d2010-12-24 13:59:11 +0800168
169 rxchan->device->device_control(rxchan, DMA_SLAVE_CONFIG,
170 (unsigned long) &rxconf);
171
172 memset(&dws->rx_sgl, 0, sizeof(dws->rx_sgl));
173 dws->rx_sgl.dma_address = dws->rx_dma;
174 dws->rx_sgl.length = dws->len;
175
Alexandre Bounine16052822012-03-08 16:11:18 -0500176 rxdesc = dmaengine_prep_slave_sg(rxchan,
Feng Tang7063c0d2010-12-24 13:59:11 +0800177 &dws->rx_sgl,
178 1,
Vinod Koula485df42011-10-14 10:47:38 +0530179 DMA_DEV_TO_MEM,
Bartlomiej Zolnierkiewicz0776ae72013-10-18 19:35:33 +0200180 DMA_PREP_INTERRUPT);
Feng Tang7063c0d2010-12-24 13:59:11 +0800181 rxdesc->callback = dw_spi_dma_done;
182 rxdesc->callback_param = dws;
183
184 /* rx must be started before tx due to spi instinct */
185 rxdesc->tx_submit(rxdesc);
186 txdesc->tx_submit(txdesc);
187 return 0;
188}
189
190static struct dw_spi_dma_ops mid_dma_ops = {
191 .dma_init = mid_spi_dma_init,
192 .dma_exit = mid_spi_dma_exit,
193 .dma_transfer = mid_spi_dma_transfer,
194};
195#endif
196
Andy Shevchenkoea092452014-09-12 15:11:59 +0300197/* Some specific info for SPI0 controller on Intel MID */
Feng Tang7063c0d2010-12-24 13:59:11 +0800198
199/* HW info for MRST CLk Control Unit, one 32b reg */
200#define MRST_SPI_CLK_BASE 100000000 /* 100m */
201#define MRST_CLK_SPI0_REG 0xff11d86c
202#define CLK_SPI_BDIV_OFFSET 0
203#define CLK_SPI_BDIV_MASK 0x00000007
204#define CLK_SPI_CDIV_OFFSET 9
205#define CLK_SPI_CDIV_MASK 0x00000e00
206#define CLK_SPI_DISABLE_OFFSET 8
207
208int dw_spi_mid_init(struct dw_spi *dws)
209{
H Hartley Sweeten7eb187b2011-09-20 11:06:17 -0700210 void __iomem *clk_reg;
211 u32 clk_cdiv;
Feng Tang7063c0d2010-12-24 13:59:11 +0800212
213 clk_reg = ioremap_nocache(MRST_CLK_SPI0_REG, 16);
214 if (!clk_reg)
215 return -ENOMEM;
216
217 /* get SPI controller operating freq info */
218 clk_cdiv = (readl(clk_reg) & CLK_SPI_CDIV_MASK) >> CLK_SPI_CDIV_OFFSET;
219 dws->max_freq = MRST_SPI_CLK_BASE / (clk_cdiv + 1);
220 iounmap(clk_reg);
221
222 dws->num_cs = 16;
223 dws->fifo_len = 40; /* FIFO has 40 words buffer */
224
225#ifdef CONFIG_SPI_DW_MID_DMA
226 dws->dma_priv = kzalloc(sizeof(struct mid_dma), GFP_KERNEL);
227 if (!dws->dma_priv)
228 return -ENOMEM;
229 dws->dma_ops = &mid_dma_ops;
230#endif
231 return 0;
232}