spi-dw-core.c 14.3 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
2
/*
G
Grant Likely 已提交
3
 * Designware SPI core controller driver (refer pxa2xx_spi.c)
4 5 6 7 8 9
 *
 * Copyright (c) 2009, Intel Corporation.
 */

#include <linux/dma-mapping.h>
#include <linux/interrupt.h>
10
#include <linux/module.h>
11 12
#include <linux/highmem.h>
#include <linux/delay.h>
13
#include <linux/slab.h>
14
#include <linux/spi/spi.h>
15
#include <linux/of.h>
16

G
Grant Likely 已提交
17
#include "spi-dw.h"
18

19 20 21 22
#ifdef CONFIG_DEBUG_FS
#include <linux/debugfs.h>
#endif

23
/* Slave spi_device related */
24
struct chip_data {
25
	u32 cr0;
26
	u32 rx_sample_dly;	/* RX sample delay */
27 28 29
};

#ifdef CONFIG_DEBUG_FS
30 31 32 33 34

#define DW_SPI_DBGFS_REG(_name, _off)	\
{					\
	.name = _name,			\
	.offset = _off,			\
35 36
}

37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
static const struct debugfs_reg32 dw_spi_dbgfs_regs[] = {
	DW_SPI_DBGFS_REG("CTRLR0", DW_SPI_CTRLR0),
	DW_SPI_DBGFS_REG("CTRLR1", DW_SPI_CTRLR1),
	DW_SPI_DBGFS_REG("SSIENR", DW_SPI_SSIENR),
	DW_SPI_DBGFS_REG("SER", DW_SPI_SER),
	DW_SPI_DBGFS_REG("BAUDR", DW_SPI_BAUDR),
	DW_SPI_DBGFS_REG("TXFTLR", DW_SPI_TXFTLR),
	DW_SPI_DBGFS_REG("RXFTLR", DW_SPI_RXFTLR),
	DW_SPI_DBGFS_REG("TXFLR", DW_SPI_TXFLR),
	DW_SPI_DBGFS_REG("RXFLR", DW_SPI_RXFLR),
	DW_SPI_DBGFS_REG("SR", DW_SPI_SR),
	DW_SPI_DBGFS_REG("IMR", DW_SPI_IMR),
	DW_SPI_DBGFS_REG("ISR", DW_SPI_ISR),
	DW_SPI_DBGFS_REG("DMACR", DW_SPI_DMACR),
	DW_SPI_DBGFS_REG("DMATDLR", DW_SPI_DMATDLR),
	DW_SPI_DBGFS_REG("DMARDLR", DW_SPI_DMARDLR),
53
	DW_SPI_DBGFS_REG("RX_SAMPLE_DLY", DW_SPI_RX_SAMPLE_DLY),
54 55
};

56
static int dw_spi_debugfs_init(struct dw_spi *dws)
57
{
58
	char name[32];
59

60
	snprintf(name, 32, "dw_spi%d", dws->master->bus_num);
61
	dws->debugfs = debugfs_create_dir(name, NULL);
62 63 64
	if (!dws->debugfs)
		return -ENOMEM;

65 66 67 68 69
	dws->regset.regs = dw_spi_dbgfs_regs;
	dws->regset.nregs = ARRAY_SIZE(dw_spi_dbgfs_regs);
	dws->regset.base = dws->regs;
	debugfs_create_regset32("registers", 0400, dws->debugfs, &dws->regset);

70 71 72
	return 0;
}

73
static void dw_spi_debugfs_remove(struct dw_spi *dws)
74
{
J
Jingoo Han 已提交
75
	debugfs_remove_recursive(dws->debugfs);
76 77 78
}

#else
79
static inline int dw_spi_debugfs_init(struct dw_spi *dws)
80
{
81
	return 0;
82 83
}

84
static inline void dw_spi_debugfs_remove(struct dw_spi *dws)
85 86 87 88
{
}
#endif /* CONFIG_DEBUG_FS */

89
void dw_spi_set_cs(struct spi_device *spi, bool enable)
90
{
91
	struct dw_spi *dws = spi_controller_get_devdata(spi->controller);
S
Serge Semin 已提交
92
	bool cs_high = !!(spi->mode & SPI_CS_HIGH);
93

S
Serge Semin 已提交
94 95 96 97 98 99 100 101
	/*
	 * DW SPI controller demands any native CS being set in order to
	 * proceed with data transfer. So in order to activate the SPI
	 * communications we must set a corresponding bit in the Slave
	 * Enable register no matter whether the SPI core is configured to
	 * support active-high or active-low CS level.
	 */
	if (cs_high == enable)
102
		dw_writel(dws, DW_SPI_SER, BIT(spi->chip_select));
103
	else if (dws->caps & DW_SPI_CAP_CS_OVERRIDE)
104
		dw_writel(dws, DW_SPI_SER, 0);
105
}
106
EXPORT_SYMBOL_GPL(dw_spi_set_cs);
107

108 109 110 111 112 113
/* 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;
114
	tx_room = dws->fifo_len - dw_readl(dws, DW_SPI_TXFLR);
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134

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

135
	return min_t(u32, rx_left, dw_readl(dws, DW_SPI_RXFLR));
136 137
}

138
static void dw_writer(struct dw_spi *dws)
139
{
140
	u32 max = tx_max(dws);
141
	u16 txw = 0;
142

143 144 145 146 147 148 149 150
	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);
		}
151
		dw_write_io_reg(dws, DW_SPI_DR, txw);
152
		dws->tx += dws->n_bytes;
153 154 155
	}
}

156
static void dw_reader(struct dw_spi *dws)
157
{
158
	u32 max = rx_max(dws);
159
	u16 rxw;
160

161
	while (max--) {
162
		rxw = dw_read_io_reg(dws, DW_SPI_DR);
163 164 165 166 167 168 169 170
		/* 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;
171 172 173 174 175
	}
}

static void int_error_stop(struct dw_spi *dws, const char *msg)
{
176
	spi_reset_chip(dws);
177 178

	dev_err(&dws->master->dev, "%s\n", msg);
179 180
	dws->master->cur_msg->status = -EIO;
	spi_finalize_current_transfer(dws->master);
181 182 183 184
}

static irqreturn_t interrupt_transfer(struct dw_spi *dws)
{
185
	u16 irq_status = dw_readl(dws, DW_SPI_ISR);
186 187 188

	/* Error handling */
	if (irq_status & (SPI_INT_TXOI | SPI_INT_RXOI | SPI_INT_RXUI)) {
189
		dw_readl(dws, DW_SPI_ICR);
190
		int_error_stop(dws, "interrupt_transfer: fifo overrun/underrun");
191 192 193
		return IRQ_HANDLED;
	}

194 195
	dw_reader(dws);
	if (dws->rx_end == dws->rx) {
196
		spi_mask_intr(dws, 0xff);
197
		spi_finalize_current_transfer(dws->master);
198 199
		return IRQ_HANDLED;
	}
200 201
	if (irq_status & SPI_INT_TXEI) {
		spi_mask_intr(dws, SPI_INT_TXEI);
202 203 204
		dw_writer(dws);
		/* Enable TX irq always, it will be disabled when RX finished */
		spi_umask_intr(dws, SPI_INT_TXEI);
205 206 207 208 209 210 211
	}

	return IRQ_HANDLED;
}

static irqreturn_t dw_spi_irq(int irq, void *dev_id)
{
212 213
	struct spi_controller *master = dev_id;
	struct dw_spi *dws = spi_controller_get_devdata(master);
214
	u16 irq_status = dw_readl(dws, DW_SPI_ISR) & 0x3f;
Y
Yong Wang 已提交
215 216 217

	if (!irq_status)
		return IRQ_NONE;
218

219
	if (!master->cur_msg) {
220
		spi_mask_intr(dws, 0xff);
221 222 223 224 225 226
		return IRQ_HANDLED;
	}

	return dws->transfer_handler(dws);
}

227
static u32 dw_spi_prepare_cr0(struct dw_spi *dws, struct spi_device *spi)
228
{
229
	u32 cr0 = 0;
230

S
Serge Semin 已提交
231 232 233
	if (!(dws->caps & DW_SPI_CAP_DWC_SSI)) {
		/* CTRLR0[ 5: 4] Frame Format */
		cr0 |= SSI_MOTO_SPI << SPI_FRF_OFFSET;
234

S
Serge Semin 已提交
235 236 237 238 239 240 241
		/*
		 * SPI mode (SCPOL|SCPH)
		 * CTRLR0[ 6] Serial Clock Phase
		 * CTRLR0[ 7] Serial Clock Polarity
		 */
		cr0 |= ((spi->mode & SPI_CPOL) ? 1 : 0) << SPI_SCOL_OFFSET;
		cr0 |= ((spi->mode & SPI_CPHA) ? 1 : 0) << SPI_SCPH_OFFSET;
242

S
Serge Semin 已提交
243 244 245 246 247
		/* CTRLR0[11] Shift Register Loop */
		cr0 |= ((spi->mode & SPI_LOOP) ? 1 : 0) << SPI_SRL_OFFSET;
	} else {
		/* CTRLR0[ 7: 6] Frame Format */
		cr0 |= SSI_MOTO_SPI << DWC_SSI_CTRLR0_FRF_OFFSET;
248

S
Serge Semin 已提交
249 250 251 252 253 254 255
		/*
		 * SPI mode (SCPOL|SCPH)
		 * CTRLR0[ 8] Serial Clock Phase
		 * CTRLR0[ 9] Serial Clock Polarity
		 */
		cr0 |= ((spi->mode & SPI_CPOL) ? 1 : 0) << DWC_SSI_CTRLR0_SCPOL_OFFSET;
		cr0 |= ((spi->mode & SPI_CPHA) ? 1 : 0) << DWC_SSI_CTRLR0_SCPH_OFFSET;
256

S
Serge Semin 已提交
257 258
		/* CTRLR0[13] Shift Register Loop */
		cr0 |= ((spi->mode & SPI_LOOP) ? 1 : 0) << DWC_SSI_CTRLR0_SRL_OFFSET;
259

S
Serge Semin 已提交
260 261 262
		if (dws->caps & DW_SPI_CAP_KEEMBAY_MST)
			cr0 |= DWC_SSI_CTRLR0_KEEMBAY_MST;
	}
263

264 265 266
	return cr0;
}

267 268
void dw_spi_update_config(struct dw_spi *dws, struct spi_device *spi,
			  struct dw_spi_cfg *cfg)
269 270 271
{
	struct chip_data *chip = spi_get_ctldata(spi);
	u32 cr0 = chip->cr0;
272 273
	u32 speed_hz;
	u16 clk_div;
274 275

	/* CTRLR0[ 4/3: 0] Data Frame Size */
276
	cr0 |= (cfg->dfs - 1);
277 278 279

	if (!(dws->caps & DW_SPI_CAP_DWC_SSI))
		/* CTRLR0[ 9:8] Transfer Mode */
280
		cr0 |= cfg->tmode << SPI_TMOD_OFFSET;
281 282
	else
		/* CTRLR0[11:10] Transfer Mode */
283
		cr0 |= cfg->tmode << DWC_SSI_CTRLR0_TMOD_OFFSET;
284

S
Serge Semin 已提交
285
	dw_writel(dws, DW_SPI_CTRLR0, cr0);
286

287 288 289
	if (cfg->tmode == SPI_TMOD_EPROMREAD || cfg->tmode == SPI_TMOD_RO)
		dw_writel(dws, DW_SPI_CTRLR1, cfg->ndf ? cfg->ndf - 1 : 0);

290
	/* Note DW APB SSI clock divider doesn't support odd numbers */
291
	clk_div = (DIV_ROUND_UP(dws->max_freq, cfg->freq) + 1) & 0xfffe;
292 293 294 295 296
	speed_hz = dws->max_freq / clk_div;

	if (dws->current_freq != speed_hz) {
		spi_set_clk(dws, clk_div);
		dws->current_freq = speed_hz;
297
	}
298 299 300 301 302 303

	/* Update RX sample delay if required */
	if (dws->cur_rx_sample_dly != chip->rx_sample_dly) {
		dw_writel(dws, DW_SPI_RX_SAMPLE_DLY, chip->rx_sample_dly);
		dws->cur_rx_sample_dly = chip->rx_sample_dly;
	}
304
}
305
EXPORT_SYMBOL_GPL(dw_spi_update_config);
306

307
static int dw_spi_transfer_one(struct spi_controller *master,
308
		struct spi_device *spi, struct spi_transfer *transfer)
309
{
310
	struct dw_spi *dws = spi_controller_get_devdata(master);
311 312 313 314 315
	struct dw_spi_cfg cfg = {
		.tmode = SPI_TMOD_TR,
		.dfs = transfer->bits_per_word,
		.freq = transfer->speed_hz,
	};
316
	u8 imask = 0;
317
	u16 txlevel = 0;
318
	int ret;
319

320
	dws->dma_mapped = 0;
321
	dws->n_bytes = DIV_ROUND_UP(transfer->bits_per_word, BITS_PER_BYTE);
322 323 324 325
	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;
326
	dws->len = transfer->len;
327

328 329 330
	/* Ensure dw->rx and dw->rx_end are visible */
	smp_mb();

331 332
	spi_enable_chip(dws, 0);

333
	dw_spi_update_config(dws, spi, &cfg);
334

335
	transfer->effective_speed_hz = dws->current_freq;
336

337
	/* Check if current transfer is a DMA transaction */
338 339
	if (master->can_dma && master->can_dma(master, spi, transfer))
		dws->dma_mapped = master->cur_msg_mapped;
340

341 342 343
	/* For poll mode just disable all interrupts */
	spi_mask_intr(dws, 0xff);

344 345 346 347
	/*
	 * Interrupt mode
	 * we only need set the TXEI IRQ, as TX/RX always happen syncronizely
	 */
348
	if (dws->dma_mapped) {
349
		ret = dws->dma_ops->dma_setup(dws, transfer);
350 351 352 353
		if (ret < 0) {
			spi_enable_chip(dws, 1);
			return ret;
		}
354
	} else {
355
		txlevel = min_t(u16, dws->fifo_len / 2, dws->len / dws->n_bytes);
356
		dw_writel(dws, DW_SPI_TXFTLR, txlevel);
357

358
		/* Set the interrupt mask */
J
Jingoo Han 已提交
359 360
		imask |= SPI_INT_TXEI | SPI_INT_TXOI |
			 SPI_INT_RXUI | SPI_INT_RXOI;
361 362
		spi_umask_intr(dws, imask);

363 364 365
		dws->transfer_handler = interrupt_transfer;
	}

366
	spi_enable_chip(dws, 1);
367

368 369
	if (dws->dma_mapped)
		return dws->dma_ops->dma_transfer(dws, transfer);
370

371
	return 1;
372 373
}

374
static void dw_spi_handle_err(struct spi_controller *master,
375
		struct spi_message *msg)
376
{
377
	struct dw_spi *dws = spi_controller_get_devdata(master);
378

379 380 381
	if (dws->dma_mapped)
		dws->dma_ops->dma_stop(dws);

382
	spi_reset_chip(dws);
383 384 385 386 387
}

/* This may be called twice for each spi dev */
static int dw_spi_setup(struct spi_device *spi)
{
388
	struct dw_spi *dws = spi_controller_get_devdata(spi->controller);
389 390 391 392 393
	struct chip_data *chip;

	/* Only alloc on first setup */
	chip = spi_get_ctldata(spi);
	if (!chip) {
394 395 396
		struct dw_spi *dws = spi_controller_get_devdata(spi->controller);
		u32 rx_sample_dly_ns;

397
		chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL);
398 399
		if (!chip)
			return -ENOMEM;
400
		spi_set_ctldata(spi, chip);
401 402 403 404 405 406 407 408 409
		/* Get specific / default rx-sample-delay */
		if (device_property_read_u32(&spi->dev,
					     "rx-sample-delay-ns",
					     &rx_sample_dly_ns) != 0)
			/* Use default controller value */
			rx_sample_dly_ns = dws->def_rx_sample_dly_ns;
		chip->rx_sample_dly = DIV_ROUND_CLOSEST(rx_sample_dly_ns,
							NSEC_PER_SEC /
							dws->max_freq);
410 411
	}

412 413 414 415 416 417 418
	/*
	 * Update CR0 data each time the setup callback is invoked since
	 * the device parameters could have been changed, for instance, by
	 * the MMC SPI driver or something else.
	 */
	chip->cr0 = dw_spi_prepare_cr0(dws, spi);

419 420 421
	return 0;
}

422 423 424 425 426 427 428 429
static void dw_spi_cleanup(struct spi_device *spi)
{
	struct chip_data *chip = spi_get_ctldata(spi);

	kfree(chip);
	spi_set_ctldata(spi, NULL);
}

430
/* Restart the controller, disable all interrupts, clean rx fifo */
431
static void spi_hw_init(struct device *dev, struct dw_spi *dws)
432
{
433
	spi_reset_chip(dws);
434 435 436 437 438 439 440

	/*
	 * 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;
J
Jingoo Han 已提交
441

442
		for (fifo = 1; fifo < 256; fifo++) {
443 444
			dw_writel(dws, DW_SPI_TXFTLR, fifo);
			if (fifo != dw_readl(dws, DW_SPI_TXFTLR))
445 446
				break;
		}
447
		dw_writel(dws, DW_SPI_TXFTLR, 0);
448

449
		dws->fifo_len = (fifo == 1) ? 0 : fifo;
450
		dev_dbg(dev, "Detected FIFO size: %u bytes\n", dws->fifo_len);
451
	}
452 453

	/* enable HW fixup for explicit CS deselect for Amazon's alpine chip */
454
	if (dws->caps & DW_SPI_CAP_CS_OVERRIDE)
455
		dw_writel(dws, DW_SPI_CS_OVERRIDE, 0xF);
456 457
}

B
Baruch Siach 已提交
458
int dw_spi_add_host(struct device *dev, struct dw_spi *dws)
459
{
460
	struct spi_controller *master;
461 462
	int ret;

463 464
	if (!dws)
		return -EINVAL;
465

B
Baruch Siach 已提交
466 467 468
	master = spi_alloc_master(dev, 0);
	if (!master)
		return -ENOMEM;
469 470

	dws->master = master;
471
	dws->dma_addr = (dma_addr_t)(dws->paddr + DW_SPI_DR);
472

473 474
	spi_controller_set_devdata(master, dws);

475 476 477
	/* Basic HW init */
	spi_hw_init(dev, dws);

478 479
	ret = request_irq(dws->irq, dw_spi_irq, IRQF_SHARED, dev_name(dev),
			  master);
480
	if (ret < 0) {
481
		dev_err(dev, "can not get IRQ\n");
482 483 484
		goto err_free_master;
	}

485
	master->use_gpio_descriptors = true;
486
	master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_LOOP;
487
	master->bits_per_word_mask =  SPI_BPW_RANGE_MASK(4, 16);
488 489 490
	master->bus_num = dws->bus_num;
	master->num_chipselect = dws->num_cs;
	master->setup = dw_spi_setup;
491
	master->cleanup = dw_spi_cleanup;
492 493 494 495
	if (dws->set_cs)
		master->set_cs = dws->set_cs;
	else
		master->set_cs = dw_spi_set_cs;
496 497
	master->transfer_one = dw_spi_transfer_one;
	master->handle_err = dw_spi_handle_err;
498
	master->max_speed_hz = dws->max_freq;
499
	master->dev.of_node = dev->of_node;
J
Jay Fang 已提交
500
	master->dev.fwnode = dev->fwnode;
501
	master->flags = SPI_MASTER_GPIO_SS;
502
	master->auto_runtime_pm = true;
503

504 505 506 507
	/* Get default rx sample delay */
	device_property_read_u32(dev, "rx-sample-delay-ns",
				 &dws->def_rx_sample_dly_ns);

F
Feng Tang 已提交
508
	if (dws->dma_ops && dws->dma_ops->dma_init) {
509
		ret = dws->dma_ops->dma_init(dev, dws);
F
Feng Tang 已提交
510
		if (ret) {
A
Andy Shevchenko 已提交
511
			dev_warn(dev, "DMA init failed\n");
512 513
		} else {
			master->can_dma = dws->dma_ops->can_dma;
S
Serge Semin 已提交
514
			master->flags |= SPI_CONTROLLER_MUST_TX;
F
Feng Tang 已提交
515 516 517
		}
	}

518
	ret = spi_register_controller(master);
519 520
	if (ret) {
		dev_err(&master->dev, "problem registering spi master\n");
521
		goto err_dma_exit;
522 523
	}

524
	dw_spi_debugfs_init(dws);
525 526
	return 0;

527
err_dma_exit:
F
Feng Tang 已提交
528 529
	if (dws->dma_ops && dws->dma_ops->dma_exit)
		dws->dma_ops->dma_exit(dws);
530
	spi_enable_chip(dws, 0);
531
	free_irq(dws->irq, master);
532
err_free_master:
533
	spi_controller_put(master);
534 535
	return ret;
}
536
EXPORT_SYMBOL_GPL(dw_spi_add_host);
537

538
void dw_spi_remove_host(struct dw_spi *dws)
539
{
540
	dw_spi_debugfs_remove(dws);
541

542 543
	spi_unregister_controller(dws->master);

F
Feng Tang 已提交
544 545
	if (dws->dma_ops && dws->dma_ops->dma_exit)
		dws->dma_ops->dma_exit(dws);
546 547

	spi_shutdown_chip(dws);
548 549

	free_irq(dws->irq, dws->master);
550
}
551
EXPORT_SYMBOL_GPL(dw_spi_remove_host);
552 553 554

int dw_spi_suspend_host(struct dw_spi *dws)
{
555
	int ret;
556

557
	ret = spi_controller_suspend(dws->master);
558 559
	if (ret)
		return ret;
560 561 562

	spi_shutdown_chip(dws);
	return 0;
563
}
564
EXPORT_SYMBOL_GPL(dw_spi_suspend_host);
565 566 567

int dw_spi_resume_host(struct dw_spi *dws)
{
568
	spi_hw_init(&dws->master->dev, dws);
569
	return spi_controller_resume(dws->master);
570
}
571
EXPORT_SYMBOL_GPL(dw_spi_resume_host);
572 573 574 575

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