spi-dw-mid.c 7.5 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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87

	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;

	/* 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;

	dws->dma_inited = 1;
	return 0;

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

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

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

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

103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
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;
}

119 120 121 122 123 124 125 126 127
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 已提交
128
/*
129 130
 * dws->dma_chan_busy is set before the dma transfer starts, callback for tx
 * channel will clear a corresponding bit.
F
Feng Tang 已提交
131
 */
132
static void dw_spi_dma_tx_done(void *arg)
F
Feng Tang 已提交
133 134 135
{
	struct dw_spi *dws = arg;

136 137
	clear_bit(TX_BUSY, &dws->dma_chan_busy);
	if (test_bit(RX_BUSY, &dws->dma_chan_busy))
F
Feng Tang 已提交
138
		return;
139
	spi_finalize_current_transfer(dws->master);
F
Feng Tang 已提交
140 141
}

142
static struct dma_async_tx_descriptor *dw_spi_dma_prepare_tx(struct dw_spi *dws)
F
Feng Tang 已提交
143
{
144 145
	struct dma_slave_config txconf;
	struct dma_async_tx_descriptor *txdesc;
F
Feng Tang 已提交
146

147 148 149
	if (!dws->tx_dma)
		return NULL;

150
	txconf.direction = DMA_MEM_TO_DEV;
F
Feng Tang 已提交
151 152 153
	txconf.dst_addr = dws->dma_addr;
	txconf.dst_maxburst = LNW_DMA_MSIZE_16;
	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;
F
Feng Tang 已提交
156

157
	dmaengine_slave_config(dws->txchan, &txconf);
F
Feng Tang 已提交
158 159 160 161 162

	memset(&dws->tx_sgl, 0, sizeof(dws->tx_sgl));
	dws->tx_sgl.dma_address = dws->tx_dma;
	dws->tx_sgl.length = dws->len;

163
	txdesc = dmaengine_prep_slave_sg(dws->txchan,
F
Feng Tang 已提交
164 165
				&dws->tx_sgl,
				1,
166
				DMA_MEM_TO_DEV,
167
				DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
168 169 170
	if (!txdesc)
		return NULL;

171
	txdesc->callback = dw_spi_dma_tx_done;
F
Feng Tang 已提交
172 173
	txdesc->callback_param = dws;

174 175 176
	return txdesc;
}

177 178 179 180 181 182 183 184
/*
 * 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;

185 186
	clear_bit(RX_BUSY, &dws->dma_chan_busy);
	if (test_bit(TX_BUSY, &dws->dma_chan_busy))
187
		return;
188
	spi_finalize_current_transfer(dws->master);
189 190
}

191 192 193 194 195
static struct dma_async_tx_descriptor *dw_spi_dma_prepare_rx(struct dw_spi *dws)
{
	struct dma_slave_config rxconf;
	struct dma_async_tx_descriptor *rxdesc;

196 197 198
	if (!dws->rx_dma)
		return NULL;

199
	rxconf.direction = DMA_DEV_TO_MEM;
F
Feng Tang 已提交
200 201 202
	rxconf.src_addr = dws->dma_addr;
	rxconf.src_maxburst = LNW_DMA_MSIZE_16;
	rxconf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
203
	rxconf.src_addr_width = convert_dma_width(dws->dma_width);
204
	rxconf.device_fc = false;
F
Feng Tang 已提交
205

206
	dmaengine_slave_config(dws->rxchan, &rxconf);
F
Feng Tang 已提交
207 208 209 210 211

	memset(&dws->rx_sgl, 0, sizeof(dws->rx_sgl));
	dws->rx_sgl.dma_address = dws->rx_dma;
	dws->rx_sgl.length = dws->len;

212
	rxdesc = dmaengine_prep_slave_sg(dws->rxchan,
F
Feng Tang 已提交
213 214
				&dws->rx_sgl,
				1,
215
				DMA_DEV_TO_MEM,
216
				DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
217 218 219
	if (!rxdesc)
		return NULL;

220
	rxdesc->callback = dw_spi_dma_rx_done;
F
Feng Tang 已提交
221 222
	rxdesc->callback_param = dws;

223 224 225
	return rxdesc;
}

226
static int mid_spi_dma_setup(struct dw_spi *dws)
227 228 229 230 231 232 233 234 235 236 237 238
{
	u16 dma_ctrl = 0;

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

	if (dws->tx_dma)
		dma_ctrl |= SPI_DMA_TDMAE;
	if (dws->rx_dma)
		dma_ctrl |= SPI_DMA_RDMAE;
	dw_writew(dws, DW_SPI_DMACR, dma_ctrl);

239 240 241 242 243
	/* Set the interrupt mask */
	spi_umask_intr(dws, SPI_INT_TXOI | SPI_INT_RXUI | SPI_INT_RXOI);

	dws->transfer_handler = dma_transfer;

244
	return 0;
245 246
}

247
static int mid_spi_dma_transfer(struct dw_spi *dws)
248 249 250
{
	struct dma_async_tx_descriptor *txdesc, *rxdesc;

251
	/* Prepare the TX dma transfer */
252 253
	txdesc = dw_spi_dma_prepare_tx(dws);

254
	/* Prepare the RX dma transfer */
255 256
	rxdesc = dw_spi_dma_prepare_rx(dws);

F
Feng Tang 已提交
257
	/* rx must be started before tx due to spi instinct */
258 259 260 261 262 263 264 265 266 267 268
	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);
	}
269

F
Feng Tang 已提交
270 271 272 273 274 275
	return 0;
}

static struct dw_spi_dma_ops mid_dma_ops = {
	.dma_init	= mid_spi_dma_init,
	.dma_exit	= mid_spi_dma_exit,
276
	.dma_setup	= mid_spi_dma_setup,
F
Feng Tang 已提交
277 278 279 280
	.dma_transfer	= mid_spi_dma_transfer,
};
#endif

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

283
/* HW info for MRST Clk Control Unit, 32b reg per controller */
F
Feng Tang 已提交
284
#define MRST_SPI_CLK_BASE	100000000	/* 100m */
285
#define MRST_CLK_SPI_REG	0xff11d86c
F
Feng Tang 已提交
286 287 288 289 290 291 292 293
#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)
{
294 295
	void __iomem *clk_reg;
	u32 clk_cdiv;
F
Feng Tang 已提交
296

297
	clk_reg = ioremap_nocache(MRST_CLK_SPI_REG, 16);
F
Feng Tang 已提交
298 299 300
	if (!clk_reg)
		return -ENOMEM;

301 302 303 304
	/* 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 已提交
305
	dws->max_freq = MRST_SPI_CLK_BASE / (clk_cdiv + 1);
306

F
Feng Tang 已提交
307 308 309 310 311 312 313 314 315 316
	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;
}