spi-dw-core.c 14.1 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 23 24 25 26
#ifdef CONFIG_DEBUG_FS
#include <linux/debugfs.h>
#endif

/* Slave spi_dev related */
struct chip_data {
	u8 tmode;		/* TR/TO/RO/EEPROM */

27
	u32 cr0;
28
	u32 rx_sample_dly;	/* RX sample delay */
29 30 31
};

#ifdef CONFIG_DEBUG_FS
32 33 34 35 36

#define DW_SPI_DBGFS_REG(_name, _off)	\
{					\
	.name = _name,			\
	.offset = _off,			\
37 38
}

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
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),
55
	DW_SPI_DBGFS_REG("RX_SAMPLE_DLY", DW_SPI_RX_SAMPLE_DLY),
56 57
};

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

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

67 68 69 70 71
	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);

72 73 74
	return 0;
}

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

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

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

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

S
Serge Semin 已提交
96 97 98 99 100 101 102 103
	/*
	 * 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)
104
		dw_writel(dws, DW_SPI_SER, BIT(spi->chip_select));
105
	else if (dws->caps & DW_SPI_CAP_CS_OVERRIDE)
106
		dw_writel(dws, DW_SPI_SER, 0);
107
}
108
EXPORT_SYMBOL_GPL(dw_spi_set_cs);
109

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

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

137
	return min_t(u32, rx_left, dw_readl(dws, DW_SPI_RXFLR));
138 139
}

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

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

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

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

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

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

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

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

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

	return IRQ_HANDLED;
}

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

	if (!irq_status)
		return IRQ_NONE;
220

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

	return dws->transfer_handler(dws);
}

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

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

S
Serge Semin 已提交
237 238 239 240 241 242 243
		/*
		 * 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;
244

S
Serge Semin 已提交
245 246 247 248 249
		/* 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;
250

S
Serge Semin 已提交
251 252 253 254 255 256 257
		/*
		 * 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;
258

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

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

266 267 268
	return cr0;
}

269 270
static void dw_spi_update_config(struct dw_spi *dws, struct spi_device *spi,
				 struct spi_transfer *transfer)
271 272 273
{
	struct chip_data *chip = spi_get_ctldata(spi);
	u32 cr0 = chip->cr0;
274 275
	u32 speed_hz;
	u16 clk_div;
276 277 278 279 280 281 282 283 284 285 286

	/* CTRLR0[ 4/3: 0] Data Frame Size */
	cr0 |= (transfer->bits_per_word - 1);

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

S
Serge Semin 已提交
287
	dw_writel(dws, DW_SPI_CTRLR0, cr0);
288

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

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

	/* 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;
	}
303 304
}

305
static int dw_spi_transfer_one(struct spi_controller *master,
306
		struct spi_device *spi, struct spi_transfer *transfer)
307
{
308
	struct dw_spi *dws = spi_controller_get_devdata(master);
309
	u8 imask = 0;
310
	u16 txlevel = 0;
311
	int ret;
312

313
	dws->dma_mapped = 0;
314
	dws->n_bytes = DIV_ROUND_UP(transfer->bits_per_word, BITS_PER_BYTE);
315 316 317 318
	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;
319
	dws->len = transfer->len;
320

321 322 323
	/* Ensure dw->rx and dw->rx_end are visible */
	smp_mb();

324 325
	spi_enable_chip(dws, 0);

326
	dw_spi_update_config(dws, spi, transfer);
327

328
	transfer->effective_speed_hz = dws->current_freq;
329

330
	/* Check if current transfer is a DMA transaction */
331 332
	if (master->can_dma && master->can_dma(master, spi, transfer))
		dws->dma_mapped = master->cur_msg_mapped;
333

334 335 336
	/* For poll mode just disable all interrupts */
	spi_mask_intr(dws, 0xff);

337 338 339 340
	/*
	 * Interrupt mode
	 * we only need set the TXEI IRQ, as TX/RX always happen syncronizely
	 */
341
	if (dws->dma_mapped) {
342
		ret = dws->dma_ops->dma_setup(dws, transfer);
343 344 345 346
		if (ret < 0) {
			spi_enable_chip(dws, 1);
			return ret;
		}
347
	} else {
348
		txlevel = min_t(u16, dws->fifo_len / 2, dws->len / dws->n_bytes);
349
		dw_writel(dws, DW_SPI_TXFTLR, txlevel);
350

351
		/* Set the interrupt mask */
J
Jingoo Han 已提交
352 353
		imask |= SPI_INT_TXEI | SPI_INT_TXOI |
			 SPI_INT_RXUI | SPI_INT_RXOI;
354 355
		spi_umask_intr(dws, imask);

356 357 358
		dws->transfer_handler = interrupt_transfer;
	}

359
	spi_enable_chip(dws, 1);
360

361 362
	if (dws->dma_mapped)
		return dws->dma_ops->dma_transfer(dws, transfer);
363

364
	return 1;
365 366
}

367
static void dw_spi_handle_err(struct spi_controller *master,
368
		struct spi_message *msg)
369
{
370
	struct dw_spi *dws = spi_controller_get_devdata(master);
371

372 373 374
	if (dws->dma_mapped)
		dws->dma_ops->dma_stop(dws);

375
	spi_reset_chip(dws);
376 377 378 379 380
}

/* This may be called twice for each spi dev */
static int dw_spi_setup(struct spi_device *spi)
{
381
	struct dw_spi *dws = spi_controller_get_devdata(spi->controller);
382 383 384 385 386
	struct chip_data *chip;

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

390
		chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL);
391 392
		if (!chip)
			return -ENOMEM;
393
		spi_set_ctldata(spi, chip);
394 395 396 397 398 399 400 401 402
		/* 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);
403 404
	}

405 406 407 408 409 410 411
	/*
	 * 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);

412
	chip->tmode = SPI_TMOD_TR;
413

414 415 416
	return 0;
}

417 418 419 420 421 422 423 424
static void dw_spi_cleanup(struct spi_device *spi)
{
	struct chip_data *chip = spi_get_ctldata(spi);

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

425
/* Restart the controller, disable all interrupts, clean rx fifo */
426
static void spi_hw_init(struct device *dev, struct dw_spi *dws)
427
{
428
	spi_reset_chip(dws);
429 430 431 432 433 434 435

	/*
	 * 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 已提交
436

437
		for (fifo = 1; fifo < 256; fifo++) {
438 439
			dw_writel(dws, DW_SPI_TXFTLR, fifo);
			if (fifo != dw_readl(dws, DW_SPI_TXFTLR))
440 441
				break;
		}
442
		dw_writel(dws, DW_SPI_TXFTLR, 0);
443

444
		dws->fifo_len = (fifo == 1) ? 0 : fifo;
445
		dev_dbg(dev, "Detected FIFO size: %u bytes\n", dws->fifo_len);
446
	}
447 448

	/* enable HW fixup for explicit CS deselect for Amazon's alpine chip */
449
	if (dws->caps & DW_SPI_CAP_CS_OVERRIDE)
450
		dw_writel(dws, DW_SPI_CS_OVERRIDE, 0xF);
451 452
}

B
Baruch Siach 已提交
453
int dw_spi_add_host(struct device *dev, struct dw_spi *dws)
454
{
455
	struct spi_controller *master;
456 457
	int ret;

458 459
	if (!dws)
		return -EINVAL;
460

B
Baruch Siach 已提交
461 462 463
	master = spi_alloc_master(dev, 0);
	if (!master)
		return -ENOMEM;
464 465

	dws->master = master;
466
	dws->dma_addr = (dma_addr_t)(dws->paddr + DW_SPI_DR);
467

468 469
	spi_controller_set_devdata(master, dws);

470 471 472
	/* Basic HW init */
	spi_hw_init(dev, dws);

473 474
	ret = request_irq(dws->irq, dw_spi_irq, IRQF_SHARED, dev_name(dev),
			  master);
475
	if (ret < 0) {
476
		dev_err(dev, "can not get IRQ\n");
477 478 479
		goto err_free_master;
	}

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

499 500 501 502
	/* Get default rx sample delay */
	device_property_read_u32(dev, "rx-sample-delay-ns",
				 &dws->def_rx_sample_dly_ns);

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

513
	ret = spi_register_controller(master);
514 515
	if (ret) {
		dev_err(&master->dev, "problem registering spi master\n");
516
		goto err_dma_exit;
517 518
	}

519
	dw_spi_debugfs_init(dws);
520 521
	return 0;

522
err_dma_exit:
F
Feng Tang 已提交
523 524
	if (dws->dma_ops && dws->dma_ops->dma_exit)
		dws->dma_ops->dma_exit(dws);
525
	spi_enable_chip(dws, 0);
526
	free_irq(dws->irq, master);
527
err_free_master:
528
	spi_controller_put(master);
529 530
	return ret;
}
531
EXPORT_SYMBOL_GPL(dw_spi_add_host);
532

533
void dw_spi_remove_host(struct dw_spi *dws)
534
{
535
	dw_spi_debugfs_remove(dws);
536

537 538
	spi_unregister_controller(dws->master);

F
Feng Tang 已提交
539 540
	if (dws->dma_ops && dws->dma_ops->dma_exit)
		dws->dma_ops->dma_exit(dws);
541 542

	spi_shutdown_chip(dws);
543 544

	free_irq(dws->irq, dws->master);
545
}
546
EXPORT_SYMBOL_GPL(dw_spi_remove_host);
547 548 549

int dw_spi_suspend_host(struct dw_spi *dws)
{
550
	int ret;
551

552
	ret = spi_controller_suspend(dws->master);
553 554
	if (ret)
		return ret;
555 556 557

	spi_shutdown_chip(dws);
	return 0;
558
}
559
EXPORT_SYMBOL_GPL(dw_spi_suspend_host);
560 561 562

int dw_spi_resume_host(struct dw_spi *dws)
{
563
	spi_hw_init(&dws->master->dev, dws);
564
	return spi_controller_resume(dws->master);
565
}
566
EXPORT_SYMBOL_GPL(dw_spi_resume_host);
567 568 569 570

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