spi-dw-core.c 14.4 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 27 28
#ifdef CONFIG_DEBUG_FS
#include <linux/debugfs.h>
#endif

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

	u16 clk_div;		/* baud rate divider */
	u32 speed_hz;		/* baud rate */
29

30
	u32 cr0;
31
	u32 rx_sample_dly;	/* RX sample delay */
32 33 34
};

#ifdef CONFIG_DEBUG_FS
35 36 37 38 39

#define DW_SPI_DBGFS_REG(_name, _off)	\
{					\
	.name = _name,			\
	.offset = _off,			\
40 41
}

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

61
static int dw_spi_debugfs_init(struct dw_spi *dws)
62
{
63
	char name[32];
64

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

70 71 72 73 74
	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);

75 76 77
	return 0;
}

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

#else
84
static inline int dw_spi_debugfs_init(struct dw_spi *dws)
85
{
86
	return 0;
87 88
}

89
static inline void dw_spi_debugfs_remove(struct dw_spi *dws)
90 91 92 93
{
}
#endif /* CONFIG_DEBUG_FS */

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

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

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

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

140
	return min_t(u32, rx_left, dw_readl(dws, DW_SPI_RXFLR));
141 142
}

143
static void dw_writer(struct dw_spi *dws)
144
{
145
	u32 max = tx_max(dws);
146
	u16 txw = 0;
147

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

161
static void dw_reader(struct dw_spi *dws)
162
{
163
	u32 max = rx_max(dws);
164
	u16 rxw;
165

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

static void int_error_stop(struct dw_spi *dws, const char *msg)
{
181
	spi_reset_chip(dws);
182 183

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

static irqreturn_t interrupt_transfer(struct dw_spi *dws)
{
190
	u16 irq_status = dw_readl(dws, DW_SPI_ISR);
191 192 193

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

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

	return IRQ_HANDLED;
}

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

	if (!irq_status)
		return IRQ_NONE;
223

224
	if (!master->cur_msg) {
225
		spi_mask_intr(dws, 0xff);
226 227 228 229 230 231
		return IRQ_HANDLED;
	}

	return dws->transfer_handler(dws);
}

232
static u32 dw_spi_prepare_cr0(struct dw_spi *dws, struct spi_device *spi)
233
{
234
	u32 cr0 = 0;
235

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

S
Serge Semin 已提交
240 241 242 243 244 245 246
		/*
		 * 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;
247

S
Serge Semin 已提交
248 249 250 251 252
		/* 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;
253

S
Serge Semin 已提交
254 255 256 257 258 259 260
		/*
		 * 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;
261

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

S
Serge Semin 已提交
265 266 267
		if (dws->caps & DW_SPI_CAP_KEEMBAY_MST)
			cr0 |= DWC_SSI_CTRLR0_KEEMBAY_MST;
	}
268

269 270 271
	return cr0;
}

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

	/* 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 已提交
288
	dw_writel(dws, DW_SPI_CTRLR0, cr0);
289 290 291 292 293 294 295 296 297 298 299

	/* Handle per transfer options for bpw and speed */
	if (transfer->speed_hz != dws->current_freq) {
		if (transfer->speed_hz != chip->speed_hz) {
			/* clk_div doesn't support odd number */
			chip->clk_div = (DIV_ROUND_UP(dws->max_freq, transfer->speed_hz) + 1) & 0xfffe;
			chip->speed_hz = transfer->speed_hz;
		}
		dws->current_freq = transfer->speed_hz;
		spi_set_clk(dws, chip->clk_div);
	}
300 301
}

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

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

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

322 323
	spi_enable_chip(dws, 0);

324
	dw_spi_update_config(dws, spi, transfer);
325

326
	transfer->effective_speed_hz = dws->max_freq / chip->clk_div;
327

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

332 333 334 335 336 337
	/* 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;
	}

338 339 340
	/* For poll mode just disable all interrupts */
	spi_mask_intr(dws, 0xff);

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

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

360 361 362
		dws->transfer_handler = interrupt_transfer;
	}

363
	spi_enable_chip(dws, 1);
364

365 366
	if (dws->dma_mapped)
		return dws->dma_ops->dma_transfer(dws, transfer);
367

368
	return 1;
369 370
}

371
static void dw_spi_handle_err(struct spi_controller *master,
372
		struct spi_message *msg)
373
{
374
	struct dw_spi *dws = spi_controller_get_devdata(master);
375

376 377 378
	if (dws->dma_mapped)
		dws->dma_ops->dma_stop(dws);

379
	spi_reset_chip(dws);
380 381 382 383 384
}

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

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

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

409 410 411 412 413 414 415
	/*
	 * 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);

416
	chip->tmode = SPI_TMOD_TR;
417

418 419 420
	return 0;
}

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

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

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

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

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

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

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

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

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

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

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

472 473
	spi_controller_set_devdata(master, dws);

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

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

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

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

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

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

523
	dw_spi_debugfs_init(dws);
524 525
	return 0;

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

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

541 542
	spi_unregister_controller(dws->master);

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

	spi_shutdown_chip(dws);
547 548

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

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

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

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

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

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