spi: Provide common spi_message processing loop
authorMark Brown <broonie@linaro.org>
Sat, 5 Oct 2013 10:50:40 +0000 (11:50 +0100)
committerMark Brown <broonie@linaro.org>
Fri, 11 Oct 2013 19:09:50 +0000 (20:09 +0100)
commitb158935f70b9c156903338053216dd0adf7ce31c
tree8fc35f89210cf56eb647c64f92a814c2ede84505
parent6bb9c0e34185717f5b0df4ad468476f64f0d73fb
spi: Provide common spi_message processing loop

The loops which SPI controller drivers use to process the list of transfers
in a spi_message are typically very similar and have some error prone areas
such as the handling of /CS. Help simplify drivers by factoring this code
out into the core - if drivers provide a transfer_one() function instead
of a transfer_one_message() function the core will handle processing at the
message level.

/CS can be controlled by either setting cs_gpio or providing a set_cs
function. If this is not possible for hardware reasons then both can be
omitted and the driver should continue to implement manual /CS handling.

This is a first step in refactoring and it is expected that there will be
further enhancements, for example factoring out of the mapping of transfers
for DMA and the initiation and completion of interrupt driven transfers.

Signed-off-by: Mark Brown <broonie@linaro.org>
drivers/spi/spi.c
include/linux/spi/spi.h
include/trace/events/spi.h