blob: 46c6d58e1fdabb9772571b06621daea4bd39f720 [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
29struct mid_dma {
30 struct intel_mid_dma_slave dmas_tx;
31 struct intel_mid_dma_slave dmas_rx;
32};
33
34static bool mid_spi_dma_chan_filter(struct dma_chan *chan, void *param)
35{
36 struct dw_spi *dws = param;
37
Andy Shevchenkob89e9c82014-09-12 15:12:00 +030038 return dws->dma_dev == chan->device->dev;
Feng Tang7063c0d2010-12-24 13:59:11 +080039}
40
41static int mid_spi_dma_init(struct dw_spi *dws)
42{
43 struct mid_dma *dw_dma = dws->dma_priv;
Andy Shevchenkob89e9c82014-09-12 15:12:00 +030044 struct pci_dev *dma_dev;
Feng Tang7063c0d2010-12-24 13:59:11 +080045 struct intel_mid_dma_slave *rxs, *txs;
46 dma_cap_mask_t mask;
47
48 /*
49 * Get pci device for DMA controller, currently it could only
Andy Shevchenkoea092452014-09-12 15:11:59 +030050 * be the DMA controller of Medfield
Feng Tang7063c0d2010-12-24 13:59:11 +080051 */
Andy Shevchenkob89e9c82014-09-12 15:12:00 +030052 dma_dev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x0827, NULL);
53 if (!dma_dev)
54 return -ENODEV;
55
56 dws->dma_dev = &dma_dev->dev;
Feng Tang7063c0d2010-12-24 13:59:11 +080057
58 dma_cap_zero(mask);
59 dma_cap_set(DMA_SLAVE, mask);
60
61 /* 1. Init rx channel */
62 dws->rxchan = dma_request_channel(mask, mid_spi_dma_chan_filter, dws);
63 if (!dws->rxchan)
64 goto err_exit;
65 rxs = &dw_dma->dmas_rx;
66 rxs->hs_mode = LNW_DMA_HW_HS;
67 rxs->cfg_mode = LNW_DMA_PER_TO_MEM;
68 dws->rxchan->private = rxs;
69
70 /* 2. Init tx channel */
71 dws->txchan = dma_request_channel(mask, mid_spi_dma_chan_filter, dws);
72 if (!dws->txchan)
73 goto free_rxchan;
74 txs = &dw_dma->dmas_tx;
75 txs->hs_mode = LNW_DMA_HW_HS;
76 txs->cfg_mode = LNW_DMA_MEM_TO_PER;
77 dws->txchan->private = txs;
78
79 dws->dma_inited = 1;
80 return 0;
81
82free_rxchan:
83 dma_release_channel(dws->rxchan);
84err_exit:
Andy Shevchenkob89e9c82014-09-12 15:12:00 +030085 return -EBUSY;
Feng Tang7063c0d2010-12-24 13:59:11 +080086}
87
88static void mid_spi_dma_exit(struct dw_spi *dws)
89{
Andy Shevchenkofb578622014-09-12 15:11:58 +030090 if (!dws->dma_inited)
91 return;
Andy Shevchenko8e45ef62014-09-18 20:08:53 +030092
93 dmaengine_terminate_all(dws->txchan);
Feng Tang7063c0d2010-12-24 13:59:11 +080094 dma_release_channel(dws->txchan);
Andy Shevchenko8e45ef62014-09-18 20:08:53 +030095
96 dmaengine_terminate_all(dws->rxchan);
Feng Tang7063c0d2010-12-24 13:59:11 +080097 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{
Andy Shevchenko2a285292014-10-02 16:31:08 +0300116 struct dma_async_tx_descriptor *txdesc, *rxdesc;
Feng Tang7063c0d2010-12-24 13:59:11 +0800117 struct dma_slave_config txconf, rxconf;
118 u16 dma_ctrl = 0;
119
120 /* 1. setup DMA related registers */
121 if (cs_change) {
122 spi_enable_chip(dws, 0);
H Hartley Sweeten7eb187b2011-09-20 11:06:17 -0700123 dw_writew(dws, DW_SPI_DMARDLR, 0xf);
124 dw_writew(dws, DW_SPI_DMATDLR, 0x10);
Feng Tang7063c0d2010-12-24 13:59:11 +0800125 if (dws->tx_dma)
Andy Shevchenko15ee3be2014-10-02 16:31:07 +0300126 dma_ctrl |= SPI_DMA_TDMAE;
Feng Tang7063c0d2010-12-24 13:59:11 +0800127 if (dws->rx_dma)
Andy Shevchenko15ee3be2014-10-02 16:31:07 +0300128 dma_ctrl |= SPI_DMA_RDMAE;
H Hartley Sweeten7eb187b2011-09-20 11:06:17 -0700129 dw_writew(dws, DW_SPI_DMACR, dma_ctrl);
Feng Tang7063c0d2010-12-24 13:59:11 +0800130 spi_enable_chip(dws, 1);
131 }
132
133 dws->dma_chan_done = 0;
Feng Tang7063c0d2010-12-24 13:59:11 +0800134
135 /* 2. Prepare the TX dma transfer */
Vinod Koula485df42011-10-14 10:47:38 +0530136 txconf.direction = DMA_MEM_TO_DEV;
Feng Tang7063c0d2010-12-24 13:59:11 +0800137 txconf.dst_addr = dws->dma_addr;
138 txconf.dst_maxburst = LNW_DMA_MSIZE_16;
139 txconf.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
Andy Shevchenkob41583e2014-09-18 20:08:51 +0300140 txconf.dst_addr_width = dws->dma_width;
Viresh Kumar258aea72012-02-01 16:12:19 +0530141 txconf.device_fc = false;
Feng Tang7063c0d2010-12-24 13:59:11 +0800142
Andy Shevchenko2a285292014-10-02 16:31:08 +0300143 dmaengine_slave_config(dws->txchan, &txconf);
Feng Tang7063c0d2010-12-24 13:59:11 +0800144
145 memset(&dws->tx_sgl, 0, sizeof(dws->tx_sgl));
146 dws->tx_sgl.dma_address = dws->tx_dma;
147 dws->tx_sgl.length = dws->len;
148
Andy Shevchenko2a285292014-10-02 16:31:08 +0300149 txdesc = dmaengine_prep_slave_sg(dws->txchan,
Feng Tang7063c0d2010-12-24 13:59:11 +0800150 &dws->tx_sgl,
151 1,
Vinod Koula485df42011-10-14 10:47:38 +0530152 DMA_MEM_TO_DEV,
Andy Shevchenkof7477c22014-10-02 16:31:09 +0300153 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
Feng Tang7063c0d2010-12-24 13:59:11 +0800154 txdesc->callback = dw_spi_dma_done;
155 txdesc->callback_param = dws;
156
157 /* 3. Prepare the RX dma transfer */
Vinod Koula485df42011-10-14 10:47:38 +0530158 rxconf.direction = DMA_DEV_TO_MEM;
Feng Tang7063c0d2010-12-24 13:59:11 +0800159 rxconf.src_addr = dws->dma_addr;
160 rxconf.src_maxburst = LNW_DMA_MSIZE_16;
161 rxconf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
Andy Shevchenkob41583e2014-09-18 20:08:51 +0300162 rxconf.src_addr_width = dws->dma_width;
Viresh Kumar258aea72012-02-01 16:12:19 +0530163 rxconf.device_fc = false;
Feng Tang7063c0d2010-12-24 13:59:11 +0800164
Andy Shevchenko2a285292014-10-02 16:31:08 +0300165 dmaengine_slave_config(dws->rxchan, &rxconf);
Feng Tang7063c0d2010-12-24 13:59:11 +0800166
167 memset(&dws->rx_sgl, 0, sizeof(dws->rx_sgl));
168 dws->rx_sgl.dma_address = dws->rx_dma;
169 dws->rx_sgl.length = dws->len;
170
Andy Shevchenko2a285292014-10-02 16:31:08 +0300171 rxdesc = dmaengine_prep_slave_sg(dws->rxchan,
Feng Tang7063c0d2010-12-24 13:59:11 +0800172 &dws->rx_sgl,
173 1,
Vinod Koula485df42011-10-14 10:47:38 +0530174 DMA_DEV_TO_MEM,
Andy Shevchenkof7477c22014-10-02 16:31:09 +0300175 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
Feng Tang7063c0d2010-12-24 13:59:11 +0800176 rxdesc->callback = dw_spi_dma_done;
177 rxdesc->callback_param = dws;
178
179 /* rx must be started before tx due to spi instinct */
Andy Shevchenko2a285292014-10-02 16:31:08 +0300180 dmaengine_submit(rxdesc);
Andy Shevchenkof7477c22014-10-02 16:31:09 +0300181 dma_async_issue_pending(dws->rxchan);
182
Andy Shevchenko2a285292014-10-02 16:31:08 +0300183 dmaengine_submit(txdesc);
Andy Shevchenkof7477c22014-10-02 16:31:09 +0300184 dma_async_issue_pending(dws->txchan);
185
Feng Tang7063c0d2010-12-24 13:59:11 +0800186 return 0;
187}
188
189static struct dw_spi_dma_ops mid_dma_ops = {
190 .dma_init = mid_spi_dma_init,
191 .dma_exit = mid_spi_dma_exit,
192 .dma_transfer = mid_spi_dma_transfer,
193};
194#endif
195
Andy Shevchenkoea092452014-09-12 15:11:59 +0300196/* Some specific info for SPI0 controller on Intel MID */
Feng Tang7063c0d2010-12-24 13:59:11 +0800197
198/* HW info for MRST CLk Control Unit, one 32b reg */
199#define MRST_SPI_CLK_BASE 100000000 /* 100m */
200#define MRST_CLK_SPI0_REG 0xff11d86c
201#define CLK_SPI_BDIV_OFFSET 0
202#define CLK_SPI_BDIV_MASK 0x00000007
203#define CLK_SPI_CDIV_OFFSET 9
204#define CLK_SPI_CDIV_MASK 0x00000e00
205#define CLK_SPI_DISABLE_OFFSET 8
206
207int dw_spi_mid_init(struct dw_spi *dws)
208{
H Hartley Sweeten7eb187b2011-09-20 11:06:17 -0700209 void __iomem *clk_reg;
210 u32 clk_cdiv;
Feng Tang7063c0d2010-12-24 13:59:11 +0800211
212 clk_reg = ioremap_nocache(MRST_CLK_SPI0_REG, 16);
213 if (!clk_reg)
214 return -ENOMEM;
215
216 /* get SPI controller operating freq info */
217 clk_cdiv = (readl(clk_reg) & CLK_SPI_CDIV_MASK) >> CLK_SPI_CDIV_OFFSET;
218 dws->max_freq = MRST_SPI_CLK_BASE / (clk_cdiv + 1);
219 iounmap(clk_reg);
220
221 dws->num_cs = 16;
222 dws->fifo_len = 40; /* FIFO has 40 words buffer */
223
224#ifdef CONFIG_SPI_DW_MID_DMA
225 dws->dma_priv = kzalloc(sizeof(struct mid_dma), GFP_KERNEL);
226 if (!dws->dma_priv)
227 return -ENOMEM;
228 dws->dma_ops = &mid_dma_ops;
229#endif
230 return 0;
231}