spi-dw.c 18.2 KB
Newer Older
1
/*
G
Grant Likely 已提交
2
 * Designware SPI core controller driver (refer pxa2xx_spi.c)
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * Copyright (c) 2009, Intel Corporation.
 *
 * 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.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include <linux/dma-mapping.h>
#include <linux/interrupt.h>
22
#include <linux/module.h>
23 24
#include <linux/highmem.h>
#include <linux/delay.h>
25
#include <linux/slab.h>
26 27
#include <linux/spi/spi.h>

G
Grant Likely 已提交
28
#include "spi-dw.h"
29

30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
#ifdef CONFIG_DEBUG_FS
#include <linux/debugfs.h>
#endif

#define START_STATE	((void *)0)
#define RUNNING_STATE	((void *)1)
#define DONE_STATE	((void *)2)
#define ERROR_STATE	((void *)-1)

#define MRST_SPI_DEASSERT	0
#define MRST_SPI_ASSERT		1

/* Slave spi_dev related */
struct chip_data {
	u16 cr0;
	u8 cs;			/* chip select pin */
	u8 n_bytes;		/* current is a 1/2/4 byte op */
	u8 tmode;		/* TR/TO/RO/EEPROM */
	u8 type;		/* SPI/SSP/MicroWire */

	u8 poll_mode;		/* 1 means use poll mode */

	u32 dma_width;
	u32 rx_threshold;
	u32 tx_threshold;
	u8 enable_dma;
	u8 bits_per_word;
	u16 clk_div;		/* baud rate divider */
	u32 speed_hz;		/* baud rate */
	void (*cs_control)(u32 command);
};

#ifdef CONFIG_DEBUG_FS
#define SPI_REGS_BUFSIZE	1024
static ssize_t  spi_show_regs(struct file *file, char __user *user_buf,
				size_t count, loff_t *ppos)
{
	struct dw_spi *dws;
	char *buf;
	u32 len = 0;
	ssize_t ret;

	dws = file->private_data;

	buf = kzalloc(SPI_REGS_BUFSIZE, GFP_KERNEL);
	if (!buf)
		return 0;

	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
			"MRST SPI0 registers:\n");
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
			"=================================\n");
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
83
			"CTRL0: \t\t0x%08x\n", dw_readl(dws, DW_SPI_CTRL0));
84
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
85
			"CTRL1: \t\t0x%08x\n", dw_readl(dws, DW_SPI_CTRL1));
86
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
87
			"SSIENR: \t0x%08x\n", dw_readl(dws, DW_SPI_SSIENR));
88
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
89
			"SER: \t\t0x%08x\n", dw_readl(dws, DW_SPI_SER));
90
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
91
			"BAUDR: \t\t0x%08x\n", dw_readl(dws, DW_SPI_BAUDR));
92
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
93
			"TXFTLR: \t0x%08x\n", dw_readl(dws, DW_SPI_TXFLTR));
94
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
95
			"RXFTLR: \t0x%08x\n", dw_readl(dws, DW_SPI_RXFLTR));
96
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
97
			"TXFLR: \t\t0x%08x\n", dw_readl(dws, DW_SPI_TXFLR));
98
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
99
			"RXFLR: \t\t0x%08x\n", dw_readl(dws, DW_SPI_RXFLR));
100
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
101
			"SR: \t\t0x%08x\n", dw_readl(dws, DW_SPI_SR));
102
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
103
			"IMR: \t\t0x%08x\n", dw_readl(dws, DW_SPI_IMR));
104
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
105
			"ISR: \t\t0x%08x\n", dw_readl(dws, DW_SPI_ISR));
106
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
107
			"DMACR: \t\t0x%08x\n", dw_readl(dws, DW_SPI_DMACR));
108
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
109
			"DMATDLR: \t0x%08x\n", dw_readl(dws, DW_SPI_DMATDLR));
110
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
111
			"DMARDLR: \t0x%08x\n", dw_readl(dws, DW_SPI_DMARDLR));
112 113 114 115 116 117 118 119 120 121
	len += snprintf(buf + len, SPI_REGS_BUFSIZE - len,
			"=================================\n");

	ret =  simple_read_from_buffer(user_buf, count, ppos, buf, len);
	kfree(buf);
	return ret;
}

static const struct file_operations mrst_spi_regs_ops = {
	.owner		= THIS_MODULE,
122
	.open		= simple_open,
123
	.read		= spi_show_regs,
124
	.llseek		= default_llseek,
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
};

static int mrst_spi_debugfs_init(struct dw_spi *dws)
{
	dws->debugfs = debugfs_create_dir("mrst_spi", NULL);
	if (!dws->debugfs)
		return -ENOMEM;

	debugfs_create_file("registers", S_IFREG | S_IRUGO,
		dws->debugfs, (void *)dws, &mrst_spi_regs_ops);
	return 0;
}

static void mrst_spi_debugfs_remove(struct dw_spi *dws)
{
	if (dws->debugfs)
		debugfs_remove_recursive(dws->debugfs);
}

#else
static inline int mrst_spi_debugfs_init(struct dw_spi *dws)
{
147
	return 0;
148 149 150 151 152 153 154
}

static inline void mrst_spi_debugfs_remove(struct dw_spi *dws)
{
}
#endif /* CONFIG_DEBUG_FS */

155 156 157 158 159 160
/* Return the max entries we can fill into tx fifo */
static inline u32 tx_max(struct dw_spi *dws)
{
	u32 tx_left, tx_room, rxtx_gap;

	tx_left = (dws->tx_end - dws->tx) / dws->n_bytes;
161
	tx_room = dws->fifo_len - dw_readw(dws, DW_SPI_TXFLR);
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181

	/*
	 * Another concern is about the tx/rx mismatch, we
	 * though to use (dws->fifo_len - rxflr - txflr) as
	 * one maximum value for tx, but it doesn't cover the
	 * data which is out of tx/rx fifo and inside the
	 * shift registers. So a control from sw point of
	 * view is taken.
	 */
	rxtx_gap =  ((dws->rx_end - dws->rx) - (dws->tx_end - dws->tx))
			/ dws->n_bytes;

	return min3(tx_left, tx_room, (u32) (dws->fifo_len - rxtx_gap));
}

/* Return the max entries we should read out of rx fifo */
static inline u32 rx_max(struct dw_spi *dws)
{
	u32 rx_left = (dws->rx_end - dws->rx) / dws->n_bytes;

182
	return min(rx_left, (u32)dw_readw(dws, DW_SPI_RXFLR));
183 184
}

185
static void dw_writer(struct dw_spi *dws)
186
{
187
	u32 max = tx_max(dws);
188
	u16 txw = 0;
189

190 191 192 193 194 195 196 197
	while (max--) {
		/* Set the tx word if the transfer's original "tx" is not null */
		if (dws->tx_end - dws->len) {
			if (dws->n_bytes == 1)
				txw = *(u8 *)(dws->tx);
			else
				txw = *(u16 *)(dws->tx);
		}
198
		dw_writew(dws, DW_SPI_DR, txw);
199
		dws->tx += dws->n_bytes;
200 201 202
	}
}

203
static void dw_reader(struct dw_spi *dws)
204
{
205
	u32 max = rx_max(dws);
206
	u16 rxw;
207

208
	while (max--) {
209
		rxw = dw_readw(dws, DW_SPI_DR);
210 211 212 213 214 215 216 217
		/* Care rx only if the transfer's original "rx" is not null */
		if (dws->rx_end - dws->len) {
			if (dws->n_bytes == 1)
				*(u8 *)(dws->rx) = rxw;
			else
				*(u16 *)(dws->rx) = rxw;
		}
		dws->rx += dws->n_bytes;
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
	}
}

static void *next_transfer(struct dw_spi *dws)
{
	struct spi_message *msg = dws->cur_msg;
	struct spi_transfer *trans = dws->cur_transfer;

	/* Move to next transfer */
	if (trans->transfer_list.next != &msg->transfers) {
		dws->cur_transfer =
			list_entry(trans->transfer_list.next,
					struct spi_transfer,
					transfer_list);
		return RUNNING_STATE;
	} else
		return DONE_STATE;
}

/*
 * Note: first step is the protocol driver prepares
 * a dma-capable memory, and this func just need translate
 * the virt addr to physical
 */
static int map_dma_buffers(struct dw_spi *dws)
{
F
Feng Tang 已提交
244 245 246 247
	if (!dws->cur_msg->is_dma_mapped
		|| !dws->dma_inited
		|| !dws->cur_chip->enable_dma
		|| !dws->dma_ops)
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
		return 0;

	if (dws->cur_transfer->tx_dma)
		dws->tx_dma = dws->cur_transfer->tx_dma;

	if (dws->cur_transfer->rx_dma)
		dws->rx_dma = dws->cur_transfer->rx_dma;

	return 1;
}

/* Caller already set message->status; dma and pio irqs are blocked */
static void giveback(struct dw_spi *dws)
{
	struct spi_transfer *last_transfer;
	struct spi_message *msg;

	msg = dws->cur_msg;
	dws->cur_msg = NULL;
	dws->cur_transfer = NULL;
	dws->prev_chip = dws->cur_chip;
	dws->cur_chip = NULL;
	dws->dma_mapped = 0;

272
	last_transfer = list_last_entry(&msg->transfers, struct spi_transfer,
273 274
					transfer_list);

275
	if (!last_transfer->cs_change && dws->cs_control)
276 277
		dws->cs_control(MRST_SPI_DEASSERT);

278
	spi_finalize_current_message(dws->master);
279 280 281 282
}

static void int_error_stop(struct dw_spi *dws, const char *msg)
{
283
	/* Stop the hw */
284 285 286 287 288 289 290
	spi_enable_chip(dws, 0);

	dev_err(&dws->master->dev, "%s\n", msg);
	dws->cur_msg->state = ERROR_STATE;
	tasklet_schedule(&dws->pump_transfers);
}

F
Feng Tang 已提交
291
void dw_spi_xfer_done(struct dw_spi *dws)
292
{
L
Lucas De Marchi 已提交
293
	/* Update total byte transferred return count actual bytes read */
294 295 296 297 298 299 300 301 302 303 304 305
	dws->cur_msg->actual_length += dws->len;

	/* Move to next transfer */
	dws->cur_msg->state = next_transfer(dws);

	/* Handle end of message */
	if (dws->cur_msg->state == DONE_STATE) {
		dws->cur_msg->status = 0;
		giveback(dws);
	} else
		tasklet_schedule(&dws->pump_transfers);
}
F
Feng Tang 已提交
306
EXPORT_SYMBOL_GPL(dw_spi_xfer_done);
307 308 309

static irqreturn_t interrupt_transfer(struct dw_spi *dws)
{
310
	u16 irq_status = dw_readw(dws, DW_SPI_ISR);
311 312 313

	/* Error handling */
	if (irq_status & (SPI_INT_TXOI | SPI_INT_RXOI | SPI_INT_RXUI)) {
314 315 316
		dw_readw(dws, DW_SPI_TXOICR);
		dw_readw(dws, DW_SPI_RXOICR);
		dw_readw(dws, DW_SPI_RXUICR);
317
		int_error_stop(dws, "interrupt_transfer: fifo overrun/underrun");
318 319 320
		return IRQ_HANDLED;
	}

321 322 323 324 325 326
	dw_reader(dws);
	if (dws->rx_end == dws->rx) {
		spi_mask_intr(dws, SPI_INT_TXEI);
		dw_spi_xfer_done(dws);
		return IRQ_HANDLED;
	}
327 328
	if (irq_status & SPI_INT_TXEI) {
		spi_mask_intr(dws, SPI_INT_TXEI);
329 330 331
		dw_writer(dws);
		/* Enable TX irq always, it will be disabled when RX finished */
		spi_umask_intr(dws, SPI_INT_TXEI);
332 333 334 335 336 337 338 339
	}

	return IRQ_HANDLED;
}

static irqreturn_t dw_spi_irq(int irq, void *dev_id)
{
	struct dw_spi *dws = dev_id;
340
	u16 irq_status = dw_readw(dws, DW_SPI_ISR) & 0x3f;
Y
Yong Wang 已提交
341 342 343

	if (!irq_status)
		return IRQ_NONE;
344 345 346 347 348 349 350 351 352 353 354 355

	if (!dws->cur_msg) {
		spi_mask_intr(dws, SPI_INT_TXEI);
		return IRQ_HANDLED;
	}

	return dws->transfer_handler(dws);
}

/* Must be called inside pump_transfers() */
static void poll_transfer(struct dw_spi *dws)
{
356 357
	do {
		dw_writer(dws);
358
		dw_reader(dws);
359 360
		cpu_relax();
	} while (dws->rx_end > dws->rx);
361

F
Feng Tang 已提交
362
	dw_spi_xfer_done(dws);
363 364 365 366 367 368 369 370 371 372 373 374 375
}

static void pump_transfers(unsigned long data)
{
	struct dw_spi *dws = (struct dw_spi *)data;
	struct spi_message *message = NULL;
	struct spi_transfer *transfer = NULL;
	struct spi_transfer *previous = NULL;
	struct spi_device *spi = NULL;
	struct chip_data *chip = NULL;
	u8 bits = 0;
	u8 imask = 0;
	u8 cs_change = 0;
376
	u16 txint_level = 0;
377 378 379 380 381 382 383 384 385 386
	u16 clk_div = 0;
	u32 speed = 0;
	u32 cr0 = 0;

	/* Get current state information */
	message = dws->cur_msg;
	transfer = dws->cur_transfer;
	chip = dws->cur_chip;
	spi = message->spi;

387 388 389
	if (unlikely(!chip->clk_div))
		chip->clk_div = dws->max_freq / chip->speed_hz;

390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
	if (message->state == ERROR_STATE) {
		message->status = -EIO;
		goto early_exit;
	}

	/* Handle end of message */
	if (message->state == DONE_STATE) {
		message->status = 0;
		goto early_exit;
	}

	/* Delay if requested at end of transfer*/
	if (message->state == RUNNING_STATE) {
		previous = list_entry(transfer->transfer_list.prev,
					struct spi_transfer,
					transfer_list);
		if (previous->delay_usecs)
			udelay(previous->delay_usecs);
	}

	dws->n_bytes = chip->n_bytes;
	dws->dma_width = chip->dma_width;
	dws->cs_control = chip->cs_control;

	dws->rx_dma = transfer->rx_dma;
	dws->tx_dma = transfer->tx_dma;
	dws->tx = (void *)transfer->tx_buf;
	dws->tx_end = dws->tx + transfer->len;
	dws->rx = transfer->rx_buf;
	dws->rx_end = dws->rx + transfer->len;
	dws->len = dws->cur_transfer->len;
	if (chip != dws->prev_chip)
		cs_change = 1;

	cr0 = chip->cr0;

	/* Handle per transfer options for bpw and speed */
	if (transfer->speed_hz) {
		speed = chip->speed_hz;

		if (transfer->speed_hz != speed) {
			speed = transfer->speed_hz;

			/* clk_div doesn't support odd number */
			clk_div = dws->max_freq / speed;
435
			clk_div = (clk_div + 1) & 0xfffe;
436 437 438 439 440 441 442

			chip->speed_hz = speed;
			chip->clk_div = clk_div;
		}
	}
	if (transfer->bits_per_word) {
		bits = transfer->bits_per_word;
443
		dws->n_bytes = dws->dma_width = bits >> 3;
444 445 446 447 448 449 450
		cr0 = (bits - 1)
			| (chip->type << SPI_FRF_OFFSET)
			| (spi->mode << SPI_MODE_OFFSET)
			| (chip->tmode << SPI_TMOD_OFFSET);
	}
	message->state = RUNNING_STATE;

451 452 453 454 455 456
	/*
	 * Adjust transfer mode if necessary. Requires platform dependent
	 * chipselect mechanism.
	 */
	if (dws->cs_control) {
		if (dws->rx && dws->tx)
457
			chip->tmode = SPI_TMOD_TR;
458
		else if (dws->rx)
459
			chip->tmode = SPI_TMOD_RO;
460
		else
461
			chip->tmode = SPI_TMOD_TO;
462

463
		cr0 &= ~SPI_TMOD_MASK;
464 465 466
		cr0 |= (chip->tmode << SPI_TMOD_OFFSET);
	}

467 468 469
	/* Check if current transfer is a DMA transaction */
	dws->dma_mapped = map_dma_buffers(dws);

470 471 472 473
	/*
	 * Interrupt mode
	 * we only need set the TXEI IRQ, as TX/RX always happen syncronizely
	 */
474
	if (!dws->dma_mapped && !chip->poll_mode) {
475 476 477 478
		int templen = dws->len / dws->n_bytes;
		txint_level = dws->fifo_len / 2;
		txint_level = (templen > txint_level) ? txint_level : templen;

479
		imask |= SPI_INT_TXEI | SPI_INT_TXOI | SPI_INT_RXUI | SPI_INT_RXOI;
480 481 482 483 484 485 486 487 488
		dws->transfer_handler = interrupt_transfer;
	}

	/*
	 * Reprogram registers only if
	 *	1. chip select changes
	 *	2. clk_div is changed
	 *	3. control value changes
	 */
489
	if (dw_readw(dws, DW_SPI_CTRL0) != cr0 || cs_change || clk_div || imask) {
490 491
		spi_enable_chip(dws, 0);

492 493
		if (dw_readw(dws, DW_SPI_CTRL0) != cr0)
			dw_writew(dws, DW_SPI_CTRL0, cr0);
494

495 496 497
		spi_set_clk(dws, clk_div ? clk_div : chip->clk_div);
		spi_chip_sel(dws, spi->chip_select);

498
		/* Set the interrupt mask, for poll mode just disable all int */
499
		spi_mask_intr(dws, 0xff);
500
		if (imask)
501
			spi_umask_intr(dws, imask);
502
		if (txint_level)
503
			dw_writew(dws, DW_SPI_TXFLTR, txint_level);
504 505 506 507 508 509 510

		spi_enable_chip(dws, 1);
		if (cs_change)
			dws->prev_chip = chip;
	}

	if (dws->dma_mapped)
F
Feng Tang 已提交
511
		dws->dma_ops->dma_transfer(dws, cs_change);
512 513 514 515 516 517 518 519 520 521 522

	if (chip->poll_mode)
		poll_transfer(dws);

	return;

early_exit:
	giveback(dws);
	return;
}

523 524
static int dw_spi_transfer_one_message(struct spi_master *master,
		struct spi_message *msg)
525
{
526
	struct dw_spi *dws = spi_master_get_devdata(master);
527

528
	dws->cur_msg = msg;
529 530 531 532 533 534 535
	/* Initial message state*/
	dws->cur_msg->state = START_STATE;
	dws->cur_transfer = list_entry(dws->cur_msg->transfers.next,
						struct spi_transfer,
						transfer_list);
	dws->cur_chip = spi_get_ctldata(dws->cur_msg->spi);

536
	/* Launch transfers */
537 538 539 540 541 542 543 544 545 546 547 548 549 550
	tasklet_schedule(&dws->pump_transfers);

	return 0;
}

/* This may be called twice for each spi dev */
static int dw_spi_setup(struct spi_device *spi)
{
	struct dw_spi_chip *chip_info = NULL;
	struct chip_data *chip;

	/* Only alloc on first setup */
	chip = spi_get_ctldata(spi);
	if (!chip) {
551 552
		chip = devm_kzalloc(&spi->dev, sizeof(struct chip_data),
				GFP_KERNEL);
553 554
		if (!chip)
			return -ENOMEM;
555
		spi_set_ctldata(spi, chip);
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
	}

	/*
	 * Protocol drivers may change the chip settings, so...
	 * if chip_info exists, use it
	 */
	chip_info = spi->controller_data;

	/* chip_info doesn't always exist */
	if (chip_info) {
		if (chip_info->cs_control)
			chip->cs_control = chip_info->cs_control;

		chip->poll_mode = chip_info->poll_mode;
		chip->type = chip_info->type;

		chip->rx_threshold = 0;
		chip->tx_threshold = 0;

		chip->enable_dma = chip_info->enable_dma;
	}

578
	if (spi->bits_per_word == 8) {
579 580
		chip->n_bytes = 1;
		chip->dma_width = 1;
581
	} else if (spi->bits_per_word == 16) {
582 583 584 585 586
		chip->n_bytes = 2;
		chip->dma_width = 2;
	}
	chip->bits_per_word = spi->bits_per_word;

587 588 589 590
	if (!spi->max_speed_hz) {
		dev_err(&spi->dev, "No max speed HZ parameter\n");
		return -EINVAL;
	}
591 592 593 594 595 596 597 598 599 600 601 602
	chip->speed_hz = spi->max_speed_hz;

	chip->tmode = 0; /* Tx & Rx */
	/* Default SPI mode is SCPOL = 0, SCPH = 0 */
	chip->cr0 = (chip->bits_per_word - 1)
			| (chip->type << SPI_FRF_OFFSET)
			| (spi->mode  << SPI_MODE_OFFSET)
			| (chip->tmode << SPI_TMOD_OFFSET);

	return 0;
}

603
static void dw_spi_cleanup(struct spi_device *spi)
604
{
605 606
	struct chip_data *chip = spi_get_ctldata(spi);
	kfree(chip);
607 608 609 610 611 612 613 614
}

/* Restart the controller, disable all interrupts, clean rx fifo */
static void spi_hw_init(struct dw_spi *dws)
{
	spi_enable_chip(dws, 0);
	spi_mask_intr(dws, 0xff);
	spi_enable_chip(dws, 1);
615 616 617 618 619 620 621 622

	/*
	 * Try to detect the FIFO depth if not set by interface driver,
	 * the depth could be from 2 to 256 from HW spec
	 */
	if (!dws->fifo_len) {
		u32 fifo;
		for (fifo = 2; fifo <= 257; fifo++) {
623 624
			dw_writew(dws, DW_SPI_TXFLTR, fifo);
			if (fifo != dw_readw(dws, DW_SPI_TXFLTR))
625 626 627 628
				break;
		}

		dws->fifo_len = (fifo == 257) ? 0 : fifo;
629
		dw_writew(dws, DW_SPI_TXFLTR, 0);
630
	}
631 632
}

B
Baruch Siach 已提交
633
int dw_spi_add_host(struct device *dev, struct dw_spi *dws)
634 635 636 637 638 639
{
	struct spi_master *master;
	int ret;

	BUG_ON(dws == NULL);

B
Baruch Siach 已提交
640 641 642
	master = spi_alloc_master(dev, 0);
	if (!master)
		return -ENOMEM;
643 644 645 646 647 648

	dws->master = master;
	dws->type = SSI_MOTO_SPI;
	dws->prev_chip = NULL;
	dws->dma_inited = 0;
	dws->dma_addr = (dma_addr_t)(dws->paddr + 0x60);
649 650
	snprintf(dws->name, sizeof(dws->name), "dw_spi%d",
			dws->bus_num);
651

B
Baruch Siach 已提交
652
	ret = devm_request_irq(dev, dws->irq, dw_spi_irq, IRQF_SHARED,
653
			dws->name, dws);
654 655 656 657 658 659
	if (ret < 0) {
		dev_err(&master->dev, "can not get IRQ\n");
		goto err_free_master;
	}

	master->mode_bits = SPI_CPOL | SPI_CPHA;
660
	master->bits_per_word_mask = SPI_BPW_MASK(8) | SPI_BPW_MASK(16);
661 662 663
	master->bus_num = dws->bus_num;
	master->num_chipselect = dws->num_cs;
	master->setup = dw_spi_setup;
664
	master->transfer_one_message = dw_spi_transfer_one_message;
665
	master->max_speed_hz = dws->max_freq;
666 667 668 669

	/* Basic HW init */
	spi_hw_init(dws);

F
Feng Tang 已提交
670 671 672 673 674 675 676 677
	if (dws->dma_ops && dws->dma_ops->dma_init) {
		ret = dws->dma_ops->dma_init(dws);
		if (ret) {
			dev_warn(&master->dev, "DMA init failed\n");
			dws->dma_inited = 0;
		}
	}

678
	tasklet_init(&dws->pump_transfers, pump_transfers, (unsigned long)dws);
679 680

	spi_master_set_devdata(master, dws);
B
Baruch Siach 已提交
681
	ret = devm_spi_register_master(dev, master);
682 683
	if (ret) {
		dev_err(&master->dev, "problem registering spi master\n");
684
		goto err_dma_exit;
685 686 687 688 689
	}

	mrst_spi_debugfs_init(dws);
	return 0;

690
err_dma_exit:
F
Feng Tang 已提交
691 692
	if (dws->dma_ops && dws->dma_ops->dma_exit)
		dws->dma_ops->dma_exit(dws);
693 694 695 696 697
	spi_enable_chip(dws, 0);
err_free_master:
	spi_master_put(master);
	return ret;
}
698
EXPORT_SYMBOL_GPL(dw_spi_add_host);
699

700
void dw_spi_remove_host(struct dw_spi *dws)
701 702 703 704 705
{
	if (!dws)
		return;
	mrst_spi_debugfs_remove(dws);

F
Feng Tang 已提交
706 707
	if (dws->dma_ops && dws->dma_ops->dma_exit)
		dws->dma_ops->dma_exit(dws);
708 709 710 711
	spi_enable_chip(dws, 0);
	/* Disable clk */
	spi_set_clk(dws, 0);
}
712
EXPORT_SYMBOL_GPL(dw_spi_remove_host);
713 714 715 716 717

int dw_spi_suspend_host(struct dw_spi *dws)
{
	int ret = 0;

718
	ret = spi_master_suspend(dws->master);
719 720 721 722 723 724
	if (ret)
		return ret;
	spi_enable_chip(dws, 0);
	spi_set_clk(dws, 0);
	return ret;
}
725
EXPORT_SYMBOL_GPL(dw_spi_suspend_host);
726 727 728 729 730 731

int dw_spi_resume_host(struct dw_spi *dws)
{
	int ret;

	spi_hw_init(dws);
732
	ret = spi_master_resume(dws->master);
733 734 735 736
	if (ret)
		dev_err(&dws->master->dev, "fail to start queue (%d)\n", ret);
	return ret;
}
737
EXPORT_SYMBOL_GPL(dw_spi_resume_host);
738 739 740 741

MODULE_AUTHOR("Feng Tang <feng.tang@intel.com>");
MODULE_DESCRIPTION("Driver for DesignWare SPI controller core");
MODULE_LICENSE("GPL v2");