* [PATCH v3 0/3] spi: A better solution for cros_ec_spi reliability
@ 2019-05-14 18:39 Douglas Anderson
[not found] ` <20190514183935.143463-1-dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Douglas Anderson @ 2019-05-14 18:39 UTC (permalink / raw)
To: Mark Brown, Benson Leung, Enric Balletbo i Serra
Cc: linux-rockchip, drinkcat, Guenter Roeck, briannorris, mka,
Douglas Anderson, linux-kernel, linux-spi
This series is a much better solution for getting the Chrome OS EC to
talk reliably.
Patch #1 in this series is the most important. It can land any time.
Patch #2 in this series (a SPI framework patch) needs to land before
patch #3. Note that patches #2 and #3 really just fix a corner case
and just having patch #1 is the most important. We don't end up on
the pumping thread very often.
Note:
- If you want some history on investigation done here, feel free to
peruse the Chrome OS bug: <https://crbug.com/948742>.
Changes in v3:
- cros_ec realtime patch replaces revert; now patch #1
- SPI core change now like patch v1 patch #2 (with name "rt").
- Updated description and variable name since we no longer force.
Changes in v2:
- Now only force transfers to the thread for devices that want it.
- Squashed patch #1 and #2 together.
- Renamed variable to "force_rt_transfers".
- Renamed variable to "force_rt_transfers".
Douglas Anderson (3):
platform/chrome: cros_ec_spi: Move to real time priority for transfers
spi: Allow SPI devices to request the pumping thread be realtime
platform/chrome: cros_ec_spi: Request the SPI thread be realtime
drivers/platform/chrome/cros_ec_spi.c | 89 +++++++++++++++++++++++----
drivers/spi/spi.c | 36 +++++++++--
include/linux/spi/spi.h | 2 +
3 files changed, 110 insertions(+), 17 deletions(-)
--
2.21.0.1020.gf2820cf01a-goog
^ permalink raw reply [flat|nested] 3+ messages in thread[parent not found: <20190514183935.143463-1-dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>]
* [PATCH v3 2/3] spi: Allow SPI devices to request the pumping thread be realtime [not found] ` <20190514183935.143463-1-dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org> @ 2019-05-14 18:39 ` Douglas Anderson 2019-05-14 19:44 ` Guenter Roeck 0 siblings, 1 reply; 3+ messages in thread From: Douglas Anderson @ 2019-05-14 18:39 UTC (permalink / raw) To: Mark Brown, Benson Leung, Enric Balletbo i Serra Cc: drinkcat-F7+t8E8rja9g9hUCZPvPmw, briannorris-F7+t8E8rja9g9hUCZPvPmw, Douglas Anderson, linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, mka-F7+t8E8rja9g9hUCZPvPmw, Guenter Roeck, linux-spi-u79uwXL29TY76Z2rM5mHXA Right now the only way to get the SPI pumping thread bumped up to realtime priority is for the controller to request it. However it may be that the controller works fine with the normal priority but communication to a particular SPI device on the bus needs realtime priority. Let's add a way for devices to request realtime priority when they set themselves up. NOTE: this will just affect the priority of transfers that end up on the SPI core's pumping thread. In many cases transfers happen in the context of the caller so if you need realtime priority for all transfers you should ensure the calling context is also realtime priority. Signed-off-by: Douglas Anderson <dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org> --- Changes in v3: - SPI core change now like patch v1 patch #2 (with name "rt"). Changes in v2: - Now only force transfers to the thread for devices that want it. - Squashed patch #1 and #2 together. - Renamed variable to "force_rt_transfers". drivers/spi/spi.c | 36 ++++++++++++++++++++++++++++++------ include/linux/spi/spi.h | 2 ++ 2 files changed, 32 insertions(+), 6 deletions(-) diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c index 8eb7460dd744..466984796dd9 100644 --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c @@ -1364,10 +1364,32 @@ static void spi_pump_messages(struct kthread_work *work) __spi_pump_messages(ctlr, true); } -static int spi_init_queue(struct spi_controller *ctlr) +/** + * spi_set_thread_rt - set the controller to pump at realtime priority + * @ctlr: controller to boost priority of + * + * This can be called because the controller requested realtime priority + * (by setting the ->rt value before calling spi_register_controller()) or + * because a device on the bus said that its transfers needed realtime + * priority. + * + * NOTE: at the moment if any device on a bus says it needs realtime then + * the thread will be at realtime priority for all transfers on that + * controller. If this eventually becomes a problem we may see if we can + * find a way to boost the priority only temporarily during relevant + * transfers. + */ +static void spi_set_thread_rt(struct spi_controller *ctlr) { struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 }; + dev_info(&ctlr->dev, + "will run message pump with realtime priority\n"); + sched_setscheduler(ctlr->kworker_task, SCHED_FIFO, ¶m); +} + +static int spi_init_queue(struct spi_controller *ctlr) +{ ctlr->running = false; ctlr->busy = false; @@ -1387,11 +1409,8 @@ static int spi_init_queue(struct spi_controller *ctlr) * request and the scheduling of the message pump thread. Without this * setting the message pump thread will remain at default priority. */ - if (ctlr->rt) { - dev_info(&ctlr->dev, - "will run message pump with realtime priority\n"); - sched_setscheduler(ctlr->kworker_task, SCHED_FIFO, ¶m); - } + if (ctlr->rt) + spi_set_thread_rt(ctlr); return 0; } @@ -2982,6 +3001,11 @@ int spi_setup(struct spi_device *spi) spi_set_cs(spi, false); + if (spi->rt && !spi->controller->rt) { + spi->controller->rt = true; + spi_set_thread_rt(spi->controller); + } + dev_dbg(&spi->dev, "setup mode %d, %s%s%s%s%u bits/w, %u Hz max --> %d\n", (int) (spi->mode & (SPI_CPOL | SPI_CPHA)), (spi->mode & SPI_CS_HIGH) ? "cs_high, " : "", diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index 053abd22ad31..15505c2485d6 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h @@ -109,6 +109,7 @@ void spi_statistics_add_transfer_stats(struct spi_statistics *stats, * This may be changed by the device's driver, or left at the * default (0) indicating protocol words are eight bit bytes. * The spi_transfer.bits_per_word can override this for each transfer. + * @rt: Make the pump thread real time priority. * @irq: Negative, or the number passed to request_irq() to receive * interrupts from this device. * @controller_state: Controller's runtime state @@ -143,6 +144,7 @@ struct spi_device { u32 max_speed_hz; u8 chip_select; u8 bits_per_word; + bool rt; u32 mode; #define SPI_CPHA 0x01 /* clock phase */ #define SPI_CPOL 0x02 /* clock polarity */ -- 2.21.0.1020.gf2820cf01a-goog ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v3 2/3] spi: Allow SPI devices to request the pumping thread be realtime 2019-05-14 18:39 ` [PATCH v3 2/3] spi: Allow SPI devices to request the pumping thread be realtime Douglas Anderson @ 2019-05-14 19:44 ` Guenter Roeck 0 siblings, 0 replies; 3+ messages in thread From: Guenter Roeck @ 2019-05-14 19:44 UTC (permalink / raw) To: Douglas Anderson Cc: Mark Brown, Benson Leung, Enric Balletbo i Serra, open list:ARM/Rockchip SoC..., Nicolas Boichat, Guenter Roeck, Brian Norris, Matthias Kaehlcke, linux-kernel, linux-spi On Tue, May 14, 2019 at 11:40 AM Douglas Anderson <dianders@chromium.org> wrote: > > Right now the only way to get the SPI pumping thread bumped up to > realtime priority is for the controller to request it. However it may > be that the controller works fine with the normal priority but > communication to a particular SPI device on the bus needs realtime > priority. > > Let's add a way for devices to request realtime priority when they set > themselves up. > > NOTE: this will just affect the priority of transfers that end up on > the SPI core's pumping thread. In many cases transfers happen in the > context of the caller so if you need realtime priority for all > transfers you should ensure the calling context is also realtime > priority. > > Signed-off-by: Douglas Anderson <dianders@chromium.org> Reviewed-by: Guenter Roeck <groeck@chromium.org> > --- > > Changes in v3: > - SPI core change now like patch v1 patch #2 (with name "rt"). > > Changes in v2: > - Now only force transfers to the thread for devices that want it. > - Squashed patch #1 and #2 together. > - Renamed variable to "force_rt_transfers". > > drivers/spi/spi.c | 36 ++++++++++++++++++++++++++++++------ > include/linux/spi/spi.h | 2 ++ > 2 files changed, 32 insertions(+), 6 deletions(-) > > diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c > index 8eb7460dd744..466984796dd9 100644 > --- a/drivers/spi/spi.c > +++ b/drivers/spi/spi.c > @@ -1364,10 +1364,32 @@ static void spi_pump_messages(struct kthread_work *work) > __spi_pump_messages(ctlr, true); > } > > -static int spi_init_queue(struct spi_controller *ctlr) > +/** > + * spi_set_thread_rt - set the controller to pump at realtime priority > + * @ctlr: controller to boost priority of > + * > + * This can be called because the controller requested realtime priority > + * (by setting the ->rt value before calling spi_register_controller()) or > + * because a device on the bus said that its transfers needed realtime > + * priority. > + * > + * NOTE: at the moment if any device on a bus says it needs realtime then > + * the thread will be at realtime priority for all transfers on that > + * controller. If this eventually becomes a problem we may see if we can > + * find a way to boost the priority only temporarily during relevant > + * transfers. > + */ > +static void spi_set_thread_rt(struct spi_controller *ctlr) > { > struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 }; > > + dev_info(&ctlr->dev, > + "will run message pump with realtime priority\n"); > + sched_setscheduler(ctlr->kworker_task, SCHED_FIFO, ¶m); > +} > + > +static int spi_init_queue(struct spi_controller *ctlr) > +{ > ctlr->running = false; > ctlr->busy = false; > > @@ -1387,11 +1409,8 @@ static int spi_init_queue(struct spi_controller *ctlr) > * request and the scheduling of the message pump thread. Without this > * setting the message pump thread will remain at default priority. > */ > - if (ctlr->rt) { > - dev_info(&ctlr->dev, > - "will run message pump with realtime priority\n"); > - sched_setscheduler(ctlr->kworker_task, SCHED_FIFO, ¶m); > - } > + if (ctlr->rt) > + spi_set_thread_rt(ctlr); > > return 0; > } > @@ -2982,6 +3001,11 @@ int spi_setup(struct spi_device *spi) > > spi_set_cs(spi, false); > > + if (spi->rt && !spi->controller->rt) { > + spi->controller->rt = true; > + spi_set_thread_rt(spi->controller); > + } > + > dev_dbg(&spi->dev, "setup mode %d, %s%s%s%s%u bits/w, %u Hz max --> %d\n", > (int) (spi->mode & (SPI_CPOL | SPI_CPHA)), > (spi->mode & SPI_CS_HIGH) ? "cs_high, " : "", > diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h > index 053abd22ad31..15505c2485d6 100644 > --- a/include/linux/spi/spi.h > +++ b/include/linux/spi/spi.h > @@ -109,6 +109,7 @@ void spi_statistics_add_transfer_stats(struct spi_statistics *stats, > * This may be changed by the device's driver, or left at the > * default (0) indicating protocol words are eight bit bytes. > * The spi_transfer.bits_per_word can override this for each transfer. > + * @rt: Make the pump thread real time priority. > * @irq: Negative, or the number passed to request_irq() to receive > * interrupts from this device. > * @controller_state: Controller's runtime state > @@ -143,6 +144,7 @@ struct spi_device { > u32 max_speed_hz; > u8 chip_select; > u8 bits_per_word; > + bool rt; > u32 mode; > #define SPI_CPHA 0x01 /* clock phase */ > #define SPI_CPOL 0x02 /* clock polarity */ > -- > 2.21.0.1020.gf2820cf01a-goog > ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-05-14 19:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-14 18:39 [PATCH v3 0/3] spi: A better solution for cros_ec_spi reliability Douglas Anderson
[not found] ` <20190514183935.143463-1-dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2019-05-14 18:39 ` [PATCH v3 2/3] spi: Allow SPI devices to request the pumping thread be realtime Douglas Anderson
2019-05-14 19:44 ` Guenter Roeck
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).