spi-dw-mid.c 8.1 KB
Newer Older
F
Feng Tang 已提交
1
/*
G
Grant Likely 已提交
2
 * Special handling for DW core on Intel MID platform
F
Feng Tang 已提交
3
 *
4
 * Copyright (c) 2009, 2014 Intel Corporation.
F
Feng Tang 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 */

#include <linux/dma-mapping.h>
#include <linux/dmaengine.h>
#include <linux/interrupt.h>
#include <linux/slab.h>
#include <linux/spi/spi.h>
21
#include <linux/types.h>
22

G
Grant Likely 已提交
23
#include "spi-dw.h"
F
Feng Tang 已提交
24 25 26 27 28

#ifdef CONFIG_SPI_DW_MID_DMA
#include <linux/intel_mid_dma.h>
#include <linux/pci.h>

29 30 31
#define RX_BUSY		0
#define TX_BUSY		1

F
Feng Tang 已提交
32 33 34 35 36 37 38 39 40
struct mid_dma {
	struct intel_mid_dma_slave	dmas_tx;
	struct intel_mid_dma_slave	dmas_rx;
};

static bool mid_spi_dma_chan_filter(struct dma_chan *chan, void *param)
{
	struct dw_spi *dws = param;

41
	return dws->dma_dev == chan->device->dev;
F
Feng Tang 已提交
42 43 44 45 46
}

static int mid_spi_dma_init(struct dw_spi *dws)
{
	struct mid_dma *dw_dma = dws->dma_priv;
47
	struct pci_dev *dma_dev;
F
Feng Tang 已提交
48 49 50 51 52
	struct intel_mid_dma_slave *rxs, *txs;
	dma_cap_mask_t mask;

	/*
	 * Get pci device for DMA controller, currently it could only
53
	 * be the DMA controller of Medfield
F
Feng Tang 已提交
54
	 */
55 56 57 58 59
	dma_dev = pci_get_device(PCI_VENDOR_ID_INTEL, 0x0827, NULL);
	if (!dma_dev)
		return -ENODEV;

	dws->dma_dev = &dma_dev->dev;
F
Feng Tang 已提交
60 61 62 63 64 65 66 67 68 69 70 71

	dma_cap_zero(mask);
	dma_cap_set(DMA_SLAVE, mask);

	/* 1. Init rx channel */
	dws->rxchan = dma_request_channel(mask, mid_spi_dma_chan_filter, dws);
	if (!dws->rxchan)
		goto err_exit;
	rxs = &dw_dma->dmas_rx;
	rxs->hs_mode = LNW_DMA_HW_HS;
	rxs->cfg_mode = LNW_DMA_PER_TO_MEM;
	dws->rxchan->private = rxs;
72
	dws->master->dma_rx = dws->rxchan;
F
Feng Tang 已提交
73 74 75 76 77 78 79 80 81

	/* 2. Init tx channel */
	dws->txchan = dma_request_channel(mask, mid_spi_dma_chan_filter, dws);
	if (!dws->txchan)
		goto free_rxchan;
	txs = &dw_dma->dmas_tx;
	txs->hs_mode = LNW_DMA_HW_HS;
	txs->cfg_mode = LNW_DMA_MEM_TO_PER;
	dws->txchan->private = txs;
82
	dws->master->dma_tx = dws->txchan;
F
Feng Tang 已提交
83 84 85 86 87 88 89

	dws->dma_inited = 1;
	return 0;

free_rxchan:
	dma_release_channel(dws->rxchan);
err_exit:
90
	return -EBUSY;
F
Feng Tang 已提交
91 92 93 94
}

static void mid_spi_dma_exit(struct dw_spi *dws)
{
95 96
	if (!dws->dma_inited)
		return;
97 98

	dmaengine_terminate_all(dws->txchan);
F
Feng Tang 已提交
99
	dma_release_channel(dws->txchan);
100 101

	dmaengine_terminate_all(dws->rxchan);
F
Feng Tang 已提交
102 103 104
	dma_release_channel(dws->rxchan);
}

105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
static irqreturn_t dma_transfer(struct dw_spi *dws)
{
	u16 irq_status = dw_readw(dws, DW_SPI_ISR);

	if (!irq_status)
		return IRQ_NONE;

	dw_readw(dws, DW_SPI_ICR);
	spi_reset_chip(dws);

	dev_err(&dws->master->dev, "%s: FIFO overrun/underrun\n", __func__);
	dws->master->cur_msg->status = -EIO;
	spi_finalize_current_transfer(dws->master);
	return IRQ_HANDLED;
}

121 122 123 124 125 126 127 128 129 130 131
static bool mid_spi_can_dma(struct spi_master *master, struct spi_device *spi,
		struct spi_transfer *xfer)
{
	struct dw_spi *dws = spi_master_get_devdata(master);

	if (!dws->dma_inited)
		return false;

	return xfer->len > dws->fifo_len;
}

132 133 134 135 136 137 138 139 140
static enum dma_slave_buswidth convert_dma_width(u32 dma_width) {
	if (dma_width == 1)
		return DMA_SLAVE_BUSWIDTH_1_BYTE;
	else if (dma_width == 2)
		return DMA_SLAVE_BUSWIDTH_2_BYTES;

	return DMA_SLAVE_BUSWIDTH_UNDEFINED;
}

F
Feng Tang 已提交
141
/*
142 143
 * dws->dma_chan_busy is set before the dma transfer starts, callback for tx
 * channel will clear a corresponding bit.
F
Feng Tang 已提交
144
 */
145
static void dw_spi_dma_tx_done(void *arg)
F
Feng Tang 已提交
146 147 148
{
	struct dw_spi *dws = arg;

149 150
	clear_bit(TX_BUSY, &dws->dma_chan_busy);
	if (test_bit(RX_BUSY, &dws->dma_chan_busy))
F
Feng Tang 已提交
151
		return;
152
	spi_finalize_current_transfer(dws->master);
F
Feng Tang 已提交
153 154
}

155 156
static struct dma_async_tx_descriptor *dw_spi_dma_prepare_tx(struct dw_spi *dws,
		struct spi_transfer *xfer)
F
Feng Tang 已提交
157
{
158 159
	struct dma_slave_config txconf;
	struct dma_async_tx_descriptor *txdesc;
F
Feng Tang 已提交
160

161
	if (!xfer->tx_buf)
162 163
		return NULL;

164
	txconf.direction = DMA_MEM_TO_DEV;
F
Feng Tang 已提交
165 166 167
	txconf.dst_addr = dws->dma_addr;
	txconf.dst_maxburst = LNW_DMA_MSIZE_16;
	txconf.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
168
	txconf.dst_addr_width = convert_dma_width(dws->dma_width);
169
	txconf.device_fc = false;
F
Feng Tang 已提交
170

171
	dmaengine_slave_config(dws->txchan, &txconf);
F
Feng Tang 已提交
172

173
	txdesc = dmaengine_prep_slave_sg(dws->txchan,
174 175
				xfer->tx_sg.sgl,
				xfer->tx_sg.nents,
176
				DMA_MEM_TO_DEV,
177
				DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
178 179 180
	if (!txdesc)
		return NULL;

181
	txdesc->callback = dw_spi_dma_tx_done;
F
Feng Tang 已提交
182 183
	txdesc->callback_param = dws;

184 185 186
	return txdesc;
}

187 188 189 190 191 192 193 194
/*
 * dws->dma_chan_busy is set before the dma transfer starts, callback for rx
 * channel will clear a corresponding bit.
 */
static void dw_spi_dma_rx_done(void *arg)
{
	struct dw_spi *dws = arg;

195 196
	clear_bit(RX_BUSY, &dws->dma_chan_busy);
	if (test_bit(TX_BUSY, &dws->dma_chan_busy))
197
		return;
198
	spi_finalize_current_transfer(dws->master);
199 200
}

201 202
static struct dma_async_tx_descriptor *dw_spi_dma_prepare_rx(struct dw_spi *dws,
		struct spi_transfer *xfer)
203 204 205 206
{
	struct dma_slave_config rxconf;
	struct dma_async_tx_descriptor *rxdesc;

207
	if (!xfer->rx_buf)
208 209
		return NULL;

210
	rxconf.direction = DMA_DEV_TO_MEM;
F
Feng Tang 已提交
211 212 213
	rxconf.src_addr = dws->dma_addr;
	rxconf.src_maxburst = LNW_DMA_MSIZE_16;
	rxconf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
214
	rxconf.src_addr_width = convert_dma_width(dws->dma_width);
215
	rxconf.device_fc = false;
F
Feng Tang 已提交
216

217
	dmaengine_slave_config(dws->rxchan, &rxconf);
F
Feng Tang 已提交
218

219
	rxdesc = dmaengine_prep_slave_sg(dws->rxchan,
220 221
				xfer->rx_sg.sgl,
				xfer->rx_sg.nents,
222
				DMA_DEV_TO_MEM,
223
				DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
224 225 226
	if (!rxdesc)
		return NULL;

227
	rxdesc->callback = dw_spi_dma_rx_done;
F
Feng Tang 已提交
228 229
	rxdesc->callback_param = dws;

230 231 232
	return rxdesc;
}

233
static int mid_spi_dma_setup(struct dw_spi *dws, struct spi_transfer *xfer)
234 235 236 237 238 239
{
	u16 dma_ctrl = 0;

	dw_writew(dws, DW_SPI_DMARDLR, 0xf);
	dw_writew(dws, DW_SPI_DMATDLR, 0x10);

240
	if (xfer->tx_buf)
241
		dma_ctrl |= SPI_DMA_TDMAE;
242
	if (xfer->rx_buf)
243 244 245
		dma_ctrl |= SPI_DMA_RDMAE;
	dw_writew(dws, DW_SPI_DMACR, dma_ctrl);

246 247 248 249 250
	/* Set the interrupt mask */
	spi_umask_intr(dws, SPI_INT_TXOI | SPI_INT_RXUI | SPI_INT_RXOI);

	dws->transfer_handler = dma_transfer;

251
	return 0;
252 253
}

254
static int mid_spi_dma_transfer(struct dw_spi *dws, struct spi_transfer *xfer)
255 256 257
{
	struct dma_async_tx_descriptor *txdesc, *rxdesc;

258
	/* Prepare the TX dma transfer */
259
	txdesc = dw_spi_dma_prepare_tx(dws, xfer);
260

261
	/* Prepare the RX dma transfer */
262
	rxdesc = dw_spi_dma_prepare_rx(dws, xfer);
263

F
Feng Tang 已提交
264
	/* rx must be started before tx due to spi instinct */
265 266 267 268 269 270 271 272 273 274 275
	if (rxdesc) {
		set_bit(RX_BUSY, &dws->dma_chan_busy);
		dmaengine_submit(rxdesc);
		dma_async_issue_pending(dws->rxchan);
	}

	if (txdesc) {
		set_bit(TX_BUSY, &dws->dma_chan_busy);
		dmaengine_submit(txdesc);
		dma_async_issue_pending(dws->txchan);
	}
276

F
Feng Tang 已提交
277 278 279
	return 0;
}

280 281 282 283 284 285 286 287 288 289 290 291
static void mid_spi_dma_stop(struct dw_spi *dws)
{
	if (test_bit(TX_BUSY, &dws->dma_chan_busy)) {
		dmaengine_terminate_all(dws->txchan);
		clear_bit(TX_BUSY, &dws->dma_chan_busy);
	}
	if (test_bit(RX_BUSY, &dws->dma_chan_busy)) {
		dmaengine_terminate_all(dws->rxchan);
		clear_bit(RX_BUSY, &dws->dma_chan_busy);
	}
}

F
Feng Tang 已提交
292 293 294
static struct dw_spi_dma_ops mid_dma_ops = {
	.dma_init	= mid_spi_dma_init,
	.dma_exit	= mid_spi_dma_exit,
295
	.dma_setup	= mid_spi_dma_setup,
296
	.can_dma	= mid_spi_can_dma,
F
Feng Tang 已提交
297
	.dma_transfer	= mid_spi_dma_transfer,
298
	.dma_stop	= mid_spi_dma_stop,
F
Feng Tang 已提交
299 300 301
};
#endif

302
/* Some specific info for SPI0 controller on Intel MID */
F
Feng Tang 已提交
303

304
/* HW info for MRST Clk Control Unit, 32b reg per controller */
F
Feng Tang 已提交
305
#define MRST_SPI_CLK_BASE	100000000	/* 100m */
306
#define MRST_CLK_SPI_REG	0xff11d86c
F
Feng Tang 已提交
307 308 309 310 311 312 313 314
#define CLK_SPI_BDIV_OFFSET	0
#define CLK_SPI_BDIV_MASK	0x00000007
#define CLK_SPI_CDIV_OFFSET	9
#define CLK_SPI_CDIV_MASK	0x00000e00
#define CLK_SPI_DISABLE_OFFSET	8

int dw_spi_mid_init(struct dw_spi *dws)
{
315 316
	void __iomem *clk_reg;
	u32 clk_cdiv;
F
Feng Tang 已提交
317

318
	clk_reg = ioremap_nocache(MRST_CLK_SPI_REG, 16);
F
Feng Tang 已提交
319 320 321
	if (!clk_reg)
		return -ENOMEM;

322 323 324 325
	/* Get SPI controller operating freq info */
	clk_cdiv = readl(clk_reg + dws->bus_num * sizeof(u32));
	clk_cdiv &= CLK_SPI_CDIV_MASK;
	clk_cdiv >>= CLK_SPI_CDIV_OFFSET;
F
Feng Tang 已提交
326
	dws->max_freq = MRST_SPI_CLK_BASE / (clk_cdiv + 1);
327

F
Feng Tang 已提交
328 329 330 331 332 333 334 335 336 337
	iounmap(clk_reg);

#ifdef CONFIG_SPI_DW_MID_DMA
	dws->dma_priv = kzalloc(sizeof(struct mid_dma), GFP_KERNEL);
	if (!dws->dma_priv)
		return -ENOMEM;
	dws->dma_ops = &mid_dma_ops;
#endif
	return 0;
}