mbox series

[0/9] spi: spi-sun6i: One fix and some improvements

Message ID 20200706071801.558394-1-mkl@pengutronix.de (mailing list archive)
Headers show
Series spi: spi-sun6i: One fix and some improvements | expand

Message

Marc Kleine-Budde July 6, 2020, 7:17 a.m. UTC
Hello,

this series first fixes the calculation of the clock rate. The driver will
round up to the nearest clock rate instead of rounding down. Resulting in SPI
devices accessed with a too high SPI clock.

The remaining patches improve the performance of the driver. The changes range
from micro-optimizations like reducing MMIO writes to the controller to
reducing the number of needed interrupts in some use cases.

regards,
Marc

Comments

Maxime Ripard July 6, 2020, 12:43 p.m. UTC | #1
On Mon, Jul 06, 2020 at 09:17:52AM +0200, Marc Kleine-Budde wrote:
> Hello,
> 
> this series first fixes the calculation of the clock rate. The driver will
> round up to the nearest clock rate instead of rounding down. Resulting in SPI
> devices accessed with a too high SPI clock.
> 
> The remaining patches improve the performance of the driver. The changes range
> from micro-optimizations like reducing MMIO writes to the controller to
> reducing the number of needed interrupts in some use cases.

Thanks for that work. Aside from the minor comment over FIELD_GET, the
whole series is

Acked-by: Maxime Ripard <mripard@kernel.org>

Maxime