Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

spi: mxic: 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.

Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://patch.msgid.link/20241224-winbond-6-11-rc1-quad-support-v2-11-ad218dbc406f@bootlin.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Miquel Raynal and committed by
Mark Brown
67707cb0 13fd04b5

+2 -1
+2 -1
drivers/spi/spi-mxic.c
··· 522 522 int i, ret; 523 523 u8 addr[8], cmd[2]; 524 524 525 - ret = mxic_spi_set_freq(mxic, mem->spi->max_speed_hz); 525 + ret = mxic_spi_set_freq(mxic, op->max_freq); 526 526 if (ret) 527 527 return ret; 528 528 ··· 582 582 .dtr = true, 583 583 .ecc = true, 584 584 .swap16 = true, 585 + .per_op_freq = true, 585 586 }; 586 587 587 588 static void mxic_spi_set_cs(struct spi_device *spi, bool lvl)