Skip to content

Commit 06e9f5a

Browse files
miquelraynalbroonie
authored andcommitted
spi: cadence-qspi: Support per spi-mem operation frequency switches
Every ->exec_op() call correctly configures the spi bus speed to the maximum allowed frequency for the memory using the constant spi default parameter. Since we can now have per-operation constraints, let's use the value that comes from the spi-mem operation structure instead. In case there is no specific limitation for this operation, the default spi device value will be given anyway. The per-operation frequency capability is thus advertised to the spi-mem core. Reviewed-by: Tudor Ambarus <[email protected]> Signed-off-by: Miquel Raynal <[email protected]> Link: https://patch.msgid.link/20241224-winbond-6-11-rc1-quad-support-v2-6-ad218dbc406f@bootlin.com Signed-off-by: Mark Brown <[email protected]>
1 parent 5baa189 commit 06e9f5a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/spi/spi-cadence-quadspi.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1409,7 +1409,7 @@ static int cqspi_mem_process(struct spi_mem *mem, const struct spi_mem_op *op)
14091409
struct cqspi_flash_pdata *f_pdata;
14101410

14111411
f_pdata = &cqspi->f_pdata[spi_get_chipselect(mem->spi, 0)];
1412-
cqspi_configure(f_pdata, mem->spi->max_speed_hz);
1412+
cqspi_configure(f_pdata, op->max_freq);
14131413

14141414
if (op->data.dir == SPI_MEM_DATA_IN && op->data.buf.in) {
14151415
/*
@@ -1658,6 +1658,7 @@ static const struct spi_controller_mem_ops cqspi_mem_ops = {
16581658

16591659
static const struct spi_controller_mem_caps cqspi_mem_caps = {
16601660
.dtr = true,
1661+
.per_op_freq = true,
16611662
};
16621663

16631664
static int cqspi_setup_flash(struct cqspi_st *cqspi)

0 commit comments

Comments
 (0)