1 // SPDX-License-Identifier: GPL-2.0-only
3 * Special handling for DW core on Intel MID platform
5 * Copyright (c) 2009, 2014 Intel Corporation.
8 #include <linux/dma-mapping.h>
9 #include <linux/dmaengine.h>
10 #include <linux/interrupt.h>
11 #include <linux/slab.h>
12 #include <linux/spi/spi.h>
13 #include <linux/types.h>
17 #ifdef CONFIG_SPI_DW_MID_DMA
18 #include <linux/pci.h>
19 #include <linux/platform_data/dma-dw.h>
24 static struct dw_dma_slave mid_dma_tx
= { .dst_id
= 1 };
25 static struct dw_dma_slave mid_dma_rx
= { .src_id
= 0 };
27 static bool mid_spi_dma_chan_filter(struct dma_chan
*chan
, void *param
)
29 struct dw_dma_slave
*s
= param
;
31 if (s
->dma_dev
!= chan
->device
->dev
)
38 static int mid_spi_dma_init(struct dw_spi
*dws
)
40 struct pci_dev
*dma_dev
;
41 struct dw_dma_slave
*tx
= dws
->dma_tx
;
42 struct dw_dma_slave
*rx
= dws
->dma_rx
;
46 * Get pci device for DMA controller, currently it could only
47 * be the DMA controller of Medfield
49 dma_dev
= pci_get_device(PCI_VENDOR_ID_INTEL
, 0x0827, NULL
);
54 dma_cap_set(DMA_SLAVE
, mask
);
56 /* 1. Init rx channel */
57 rx
->dma_dev
= &dma_dev
->dev
;
58 dws
->rxchan
= dma_request_channel(mask
, mid_spi_dma_chan_filter
, rx
);
61 dws
->master
->dma_rx
= dws
->rxchan
;
63 /* 2. Init tx channel */
64 tx
->dma_dev
= &dma_dev
->dev
;
65 dws
->txchan
= dma_request_channel(mask
, mid_spi_dma_chan_filter
, tx
);
68 dws
->master
->dma_tx
= dws
->txchan
;
74 dma_release_channel(dws
->rxchan
);
79 static void mid_spi_dma_exit(struct dw_spi
*dws
)
84 dmaengine_terminate_sync(dws
->txchan
);
85 dma_release_channel(dws
->txchan
);
87 dmaengine_terminate_sync(dws
->rxchan
);
88 dma_release_channel(dws
->rxchan
);
91 static irqreturn_t
dma_transfer(struct dw_spi
*dws
)
93 u16 irq_status
= dw_readl(dws
, DW_SPI_ISR
);
98 dw_readl(dws
, DW_SPI_ICR
);
101 dev_err(&dws
->master
->dev
, "%s: FIFO overrun/underrun\n", __func__
);
102 dws
->master
->cur_msg
->status
= -EIO
;
103 spi_finalize_current_transfer(dws
->master
);
107 static bool mid_spi_can_dma(struct spi_controller
*master
,
108 struct spi_device
*spi
, struct spi_transfer
*xfer
)
110 struct dw_spi
*dws
= spi_controller_get_devdata(master
);
112 if (!dws
->dma_inited
)
115 return xfer
->len
> dws
->fifo_len
;
118 static enum dma_slave_buswidth
convert_dma_width(u32 dma_width
) {
120 return DMA_SLAVE_BUSWIDTH_1_BYTE
;
121 else if (dma_width
== 2)
122 return DMA_SLAVE_BUSWIDTH_2_BYTES
;
124 return DMA_SLAVE_BUSWIDTH_UNDEFINED
;
128 * dws->dma_chan_busy is set before the dma transfer starts, callback for tx
129 * channel will clear a corresponding bit.
131 static void dw_spi_dma_tx_done(void *arg
)
133 struct dw_spi
*dws
= arg
;
135 clear_bit(TX_BUSY
, &dws
->dma_chan_busy
);
136 if (test_bit(RX_BUSY
, &dws
->dma_chan_busy
))
138 spi_finalize_current_transfer(dws
->master
);
141 static struct dma_async_tx_descriptor
*dw_spi_dma_prepare_tx(struct dw_spi
*dws
,
142 struct spi_transfer
*xfer
)
144 struct dma_slave_config txconf
;
145 struct dma_async_tx_descriptor
*txdesc
;
150 txconf
.direction
= DMA_MEM_TO_DEV
;
151 txconf
.dst_addr
= dws
->dma_addr
;
152 txconf
.dst_maxburst
= 16;
153 txconf
.src_addr_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
;
154 txconf
.dst_addr_width
= convert_dma_width(dws
->dma_width
);
155 txconf
.device_fc
= false;
157 dmaengine_slave_config(dws
->txchan
, &txconf
);
159 txdesc
= dmaengine_prep_slave_sg(dws
->txchan
,
163 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
167 txdesc
->callback
= dw_spi_dma_tx_done
;
168 txdesc
->callback_param
= dws
;
174 * dws->dma_chan_busy is set before the dma transfer starts, callback for rx
175 * channel will clear a corresponding bit.
177 static void dw_spi_dma_rx_done(void *arg
)
179 struct dw_spi
*dws
= arg
;
181 clear_bit(RX_BUSY
, &dws
->dma_chan_busy
);
182 if (test_bit(TX_BUSY
, &dws
->dma_chan_busy
))
184 spi_finalize_current_transfer(dws
->master
);
187 static struct dma_async_tx_descriptor
*dw_spi_dma_prepare_rx(struct dw_spi
*dws
,
188 struct spi_transfer
*xfer
)
190 struct dma_slave_config rxconf
;
191 struct dma_async_tx_descriptor
*rxdesc
;
196 rxconf
.direction
= DMA_DEV_TO_MEM
;
197 rxconf
.src_addr
= dws
->dma_addr
;
198 rxconf
.src_maxburst
= 16;
199 rxconf
.dst_addr_width
= DMA_SLAVE_BUSWIDTH_4_BYTES
;
200 rxconf
.src_addr_width
= convert_dma_width(dws
->dma_width
);
201 rxconf
.device_fc
= false;
203 dmaengine_slave_config(dws
->rxchan
, &rxconf
);
205 rxdesc
= dmaengine_prep_slave_sg(dws
->rxchan
,
209 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
213 rxdesc
->callback
= dw_spi_dma_rx_done
;
214 rxdesc
->callback_param
= dws
;
219 static int mid_spi_dma_setup(struct dw_spi
*dws
, struct spi_transfer
*xfer
)
223 dw_writel(dws
, DW_SPI_DMARDLR
, 0xf);
224 dw_writel(dws
, DW_SPI_DMATDLR
, 0x10);
227 dma_ctrl
|= SPI_DMA_TDMAE
;
229 dma_ctrl
|= SPI_DMA_RDMAE
;
230 dw_writel(dws
, DW_SPI_DMACR
, dma_ctrl
);
232 /* Set the interrupt mask */
233 spi_umask_intr(dws
, SPI_INT_TXOI
| SPI_INT_RXUI
| SPI_INT_RXOI
);
235 dws
->transfer_handler
= dma_transfer
;
240 static int mid_spi_dma_transfer(struct dw_spi
*dws
, struct spi_transfer
*xfer
)
242 struct dma_async_tx_descriptor
*txdesc
, *rxdesc
;
244 /* Prepare the TX dma transfer */
245 txdesc
= dw_spi_dma_prepare_tx(dws
, xfer
);
247 /* Prepare the RX dma transfer */
248 rxdesc
= dw_spi_dma_prepare_rx(dws
, xfer
);
250 /* rx must be started before tx due to spi instinct */
252 set_bit(RX_BUSY
, &dws
->dma_chan_busy
);
253 dmaengine_submit(rxdesc
);
254 dma_async_issue_pending(dws
->rxchan
);
258 set_bit(TX_BUSY
, &dws
->dma_chan_busy
);
259 dmaengine_submit(txdesc
);
260 dma_async_issue_pending(dws
->txchan
);
266 static void mid_spi_dma_stop(struct dw_spi
*dws
)
268 if (test_bit(TX_BUSY
, &dws
->dma_chan_busy
)) {
269 dmaengine_terminate_sync(dws
->txchan
);
270 clear_bit(TX_BUSY
, &dws
->dma_chan_busy
);
272 if (test_bit(RX_BUSY
, &dws
->dma_chan_busy
)) {
273 dmaengine_terminate_sync(dws
->rxchan
);
274 clear_bit(RX_BUSY
, &dws
->dma_chan_busy
);
278 static const struct dw_spi_dma_ops mid_dma_ops
= {
279 .dma_init
= mid_spi_dma_init
,
280 .dma_exit
= mid_spi_dma_exit
,
281 .dma_setup
= mid_spi_dma_setup
,
282 .can_dma
= mid_spi_can_dma
,
283 .dma_transfer
= mid_spi_dma_transfer
,
284 .dma_stop
= mid_spi_dma_stop
,
288 /* Some specific info for SPI0 controller on Intel MID */
290 /* HW info for MRST Clk Control Unit, 32b reg per controller */
291 #define MRST_SPI_CLK_BASE 100000000 /* 100m */
292 #define MRST_CLK_SPI_REG 0xff11d86c
293 #define CLK_SPI_BDIV_OFFSET 0
294 #define CLK_SPI_BDIV_MASK 0x00000007
295 #define CLK_SPI_CDIV_OFFSET 9
296 #define CLK_SPI_CDIV_MASK 0x00000e00
297 #define CLK_SPI_DISABLE_OFFSET 8
299 int dw_spi_mid_init(struct dw_spi
*dws
)
301 void __iomem
*clk_reg
;
304 clk_reg
= ioremap_nocache(MRST_CLK_SPI_REG
, 16);
308 /* Get SPI controller operating freq info */
309 clk_cdiv
= readl(clk_reg
+ dws
->bus_num
* sizeof(u32
));
310 clk_cdiv
&= CLK_SPI_CDIV_MASK
;
311 clk_cdiv
>>= CLK_SPI_CDIV_OFFSET
;
312 dws
->max_freq
= MRST_SPI_CLK_BASE
/ (clk_cdiv
+ 1);
316 #ifdef CONFIG_SPI_DW_MID_DMA
317 dws
->dma_tx
= &mid_dma_tx
;
318 dws
->dma_rx
= &mid_dma_rx
;
319 dws
->dma_ops
= &mid_dma_ops
;