spi-dw-core.c 14.2 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
static int dw_spi_transfer_one(struct spi_controller *master,
300
		struct spi_device *spi, struct spi_transfer *transfer)
301
{
302
	struct dw_spi *dws = spi_controller_get_devdata(master);
303
	struct chip_data *chip = spi_get_ctldata(spi);
304
	u8 imask = 0;
305
	u16 txlevel = 0;
306
	int ret;
307

308
	dws->dma_mapped = 0;
309
	dws->n_bytes = DIV_ROUND_UP(transfer->bits_per_word, BITS_PER_BYTE);
310 311 312 313
	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;
314
	dws->len = transfer->len;
315

316 317 318
	/* Ensure dw->rx and dw->rx_end are visible */
	smp_mb();

319 320
	spi_enable_chip(dws, 0);

321
	dw_spi_update_config(dws, spi, transfer);
322

323
	transfer->effective_speed_hz = dws->current_freq;
324

325
	/* Check if current transfer is a DMA transaction */
326 327
	if (master->can_dma && master->can_dma(master, spi, transfer))
		dws->dma_mapped = master->cur_msg_mapped;
328

329 330 331 332 333 334
	/* 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;
	}

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

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

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

357 358 359
		dws->transfer_handler = interrupt_transfer;
	}

360
	spi_enable_chip(dws, 1);
361

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

365
	return 1;
366 367
}

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

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

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

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

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

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

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

413
	chip->tmode = SPI_TMOD_TR;
414

415 416 417
	return 0;
}

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

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

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

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

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

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

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

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

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

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

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

469 470
	spi_controller_set_devdata(master, dws);

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

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

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

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

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

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

520
	dw_spi_debugfs_init(dws);
521 522
	return 0;

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

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

538 539
	spi_unregister_controller(dws->master);

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

	spi_shutdown_chip(dws);
544 545

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

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

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

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

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

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