* [PATCH v3 0/2] spi: add devm_spi_optimize_message() helper
@ 2024-06-24 20:46 David Lechner
2024-06-24 20:46 ` [PATCH v3 1/2] spi: add EXPORT_SYMBOL_GPL(devm_spi_optimize_message) David Lechner
2024-06-24 20:46 ` [PATCH v3 2/2] iio: adc: ad7944: use devm_spi_optimize_message() David Lechner
0 siblings, 2 replies; 4+ messages in thread
From: David Lechner @ 2024-06-24 20:46 UTC (permalink / raw)
To: Mark Brown, Jonathan Cameron
Cc: David Lechner, Michael Hennerich, Nuno Sá, Marcelo Schmitt,
Jonathan Corbet, linux-doc, linux-kernel, linux-spi, linux-iio
In the IIO subsystem, we are finding that it is common to call
spi_optimize_message() during driver probe since the SPI message
doesn't change for the lifetime of the driver. This patch adds a
devm_spi_optimize_message() helper to simplify this common pattern.
---
Changes in v3:
- Fix commit hash in Fixes: tag in first patch.
- Link to v2: https://lore.kernel.org/r/20240624-devm_spi_optimize_message-v2-0-58155c0180c2@baylibre.com
Changes in v2:
- Dropped already applied SPI patches.
- Added patch to fix missing EXPORT_SYMBOL_GPL.
- Link to v1: https://lore.kernel.org/r/20240621-devm_spi_optimize_message-v1-0-3f9dcba6e95e@baylibre.com
---
David Lechner (2):
spi: add EXPORT_SYMBOL_GPL(devm_spi_optimize_message)
iio: adc: ad7944: use devm_spi_optimize_message()
drivers/iio/adc/ad7944.c | 26 +++-----------------------
drivers/spi/spi.c | 1 +
2 files changed, 4 insertions(+), 23 deletions(-)
---
base-commit: 17436001a6bc42c7f55dc547ca5b1a873208d91d
change-id: 20240621-devm_spi_optimize_message-ebbde029dd7a
Best regards,
--
David Lechner <dlechner@baylibre.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v3 1/2] spi: add EXPORT_SYMBOL_GPL(devm_spi_optimize_message)
2024-06-24 20:46 [PATCH v3 0/2] spi: add devm_spi_optimize_message() helper David Lechner
@ 2024-06-24 20:46 ` David Lechner
2024-06-24 20:46 ` [PATCH v3 2/2] iio: adc: ad7944: use devm_spi_optimize_message() David Lechner
1 sibling, 0 replies; 4+ messages in thread
From: David Lechner @ 2024-06-24 20:46 UTC (permalink / raw)
To: Mark Brown, Jonathan Cameron
Cc: David Lechner, Michael Hennerich, Nuno Sá, Marcelo Schmitt,
Jonathan Corbet, linux-doc, linux-kernel, linux-spi, linux-iio
devm_spi_optimize_message() is a public function and needs
EXPORT_SYMBOL_GPL.
Reported-by: Jonathan Cameron <jic23@kernel.org>
Closes: https://lore.kernel.org/linux-iio/20240624204424.6a91a5e4@jic23-huawei/
Fixes: d4a0055fdc22 ("spi: add devm_spi_optimize_message() helper")
Signed-off-by: David Lechner <dlechner@baylibre.com>
---
drivers/spi/spi.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index 3f953504244b..814d66fc9753 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -4384,6 +4384,7 @@ int devm_spi_optimize_message(struct device *dev, struct spi_device *spi,
return devm_add_action_or_reset(dev, devm_spi_unoptimize_message, msg);
}
+EXPORT_SYMBOL_GPL(devm_spi_optimize_message);
/**
* spi_async - asynchronous SPI transfer
--
2.45.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v3 2/2] iio: adc: ad7944: use devm_spi_optimize_message()
2024-06-24 20:46 [PATCH v3 0/2] spi: add devm_spi_optimize_message() helper David Lechner
2024-06-24 20:46 ` [PATCH v3 1/2] spi: add EXPORT_SYMBOL_GPL(devm_spi_optimize_message) David Lechner
@ 2024-06-24 20:46 ` David Lechner
2024-06-30 10:39 ` Jonathan Cameron
1 sibling, 1 reply; 4+ messages in thread
From: David Lechner @ 2024-06-24 20:46 UTC (permalink / raw)
To: Mark Brown, Jonathan Cameron
Cc: David Lechner, Michael Hennerich, Nuno Sá, Marcelo Schmitt,
Jonathan Corbet, linux-doc, linux-kernel, linux-spi, linux-iio
Use new devm_spi_optimize_message() helper to simplify repeated code
in the ad7944 driver.
Signed-off-by: David Lechner <dlechner@baylibre.com>
---
drivers/iio/adc/ad7944.c | 26 +++-----------------------
1 file changed, 3 insertions(+), 23 deletions(-)
diff --git a/drivers/iio/adc/ad7944.c b/drivers/iio/adc/ad7944.c
index 4602ab5ed2a6..a6ac17c13a29 100644
--- a/drivers/iio/adc/ad7944.c
+++ b/drivers/iio/adc/ad7944.c
@@ -134,18 +134,12 @@ AD7944_DEFINE_CHIP_INFO(ad7985, ad7944, 16, 0);
/* fully differential */
AD7944_DEFINE_CHIP_INFO(ad7986, ad7986, 18, 1);
-static void ad7944_unoptimize_msg(void *msg)
-{
- spi_unoptimize_message(msg);
-}
-
static int ad7944_3wire_cs_mode_init_msg(struct device *dev, struct ad7944_adc *adc,
const struct iio_chan_spec *chan)
{
unsigned int t_conv_ns = adc->always_turbo ? adc->timing_spec->turbo_conv_ns
: adc->timing_spec->conv_ns;
struct spi_transfer *xfers = adc->xfers;
- int ret;
/*
* NB: can get better performance from some SPI controllers if we use
@@ -175,11 +169,7 @@ static int ad7944_3wire_cs_mode_init_msg(struct device *dev, struct ad7944_adc *
spi_message_init_with_transfers(&adc->msg, xfers, 3);
- ret = spi_optimize_message(adc->spi, &adc->msg);
- if (ret)
- return ret;
-
- return devm_add_action_or_reset(dev, ad7944_unoptimize_msg, &adc->msg);
+ return devm_spi_optimize_message(dev, adc->spi, &adc->msg);
}
static int ad7944_4wire_mode_init_msg(struct device *dev, struct ad7944_adc *adc,
@@ -188,7 +178,6 @@ static int ad7944_4wire_mode_init_msg(struct device *dev, struct ad7944_adc *adc
unsigned int t_conv_ns = adc->always_turbo ? adc->timing_spec->turbo_conv_ns
: adc->timing_spec->conv_ns;
struct spi_transfer *xfers = adc->xfers;
- int ret;
/*
* NB: can get better performance from some SPI controllers if we use
@@ -209,11 +198,7 @@ static int ad7944_4wire_mode_init_msg(struct device *dev, struct ad7944_adc *adc
spi_message_init_with_transfers(&adc->msg, xfers, 2);
- ret = spi_optimize_message(adc->spi, &adc->msg);
- if (ret)
- return ret;
-
- return devm_add_action_or_reset(dev, ad7944_unoptimize_msg, &adc->msg);
+ return devm_spi_optimize_message(dev, adc->spi, &adc->msg);
}
static int ad7944_chain_mode_init_msg(struct device *dev, struct ad7944_adc *adc,
@@ -221,7 +206,6 @@ static int ad7944_chain_mode_init_msg(struct device *dev, struct ad7944_adc *adc
u32 n_chain_dev)
{
struct spi_transfer *xfers = adc->xfers;
- int ret;
/*
* NB: SCLK has to be low before we toggle CS to avoid triggering the
@@ -249,11 +233,7 @@ static int ad7944_chain_mode_init_msg(struct device *dev, struct ad7944_adc *adc
spi_message_init_with_transfers(&adc->msg, xfers, 2);
- ret = spi_optimize_message(adc->spi, &adc->msg);
- if (ret)
- return ret;
-
- return devm_add_action_or_reset(dev, ad7944_unoptimize_msg, &adc->msg);
+ return devm_spi_optimize_message(dev, adc->spi, &adc->msg);
}
/**
--
2.45.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v3 2/2] iio: adc: ad7944: use devm_spi_optimize_message()
2024-06-24 20:46 ` [PATCH v3 2/2] iio: adc: ad7944: use devm_spi_optimize_message() David Lechner
@ 2024-06-30 10:39 ` Jonathan Cameron
0 siblings, 0 replies; 4+ messages in thread
From: Jonathan Cameron @ 2024-06-30 10:39 UTC (permalink / raw)
To: David Lechner
Cc: Mark Brown, Michael Hennerich, Nuno Sá, Marcelo Schmitt,
Jonathan Corbet, linux-doc, linux-kernel, linux-spi, linux-iio
On Mon, 24 Jun 2024 15:46:08 -0500
David Lechner <dlechner@baylibre.com> wrote:
> Use new devm_spi_optimize_message() helper to simplify repeated code
> in the ad7944 driver.
>
> Signed-off-by: David Lechner <dlechner@baylibre.com>
Merged the updated tag from Mark and applied this on top.
Thanks,
Jonathan
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-06-30 10:39 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-24 20:46 [PATCH v3 0/2] spi: add devm_spi_optimize_message() helper David Lechner
2024-06-24 20:46 ` [PATCH v3 1/2] spi: add EXPORT_SYMBOL_GPL(devm_spi_optimize_message) David Lechner
2024-06-24 20:46 ` [PATCH v3 2/2] iio: adc: ad7944: use devm_spi_optimize_message() David Lechner
2024-06-30 10:39 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).