u-boot-brain/cpu
Haavard Skinnemoen d255bb0e78 SPI API improvements
This patch gets rid of the spi_chipsel table and adds a handful of new
functions that makes the SPI layer cleaner and more flexible.

Instead of the spi_chipsel table, each board that wants to use SPI
gets to implement three hooks:
  * spi_cs_activate(): Activates the chipselect for a given slave
  * spi_cs_deactivate(): Deactivates the chipselect for a given slave
  * spi_cs_is_valid(): Determines if the given bus/chipselect
    combination can be activated.

Not all drivers may need those extra functions however. If that's the
case, the board code may just leave them out (assuming they know what
the driver needs) or rely on the linker to strip them out (assuming
--gc-sections is being used.)

To set up communication parameters for a given slave, the driver needs
to call spi_setup_slave(). This returns a pointer to an opaque
spi_slave struct which must be passed as a parameter to subsequent SPI
calls. This struct can be freed by calling spi_free_slave(), but most
driver probably don't want to do this.

Before starting one or more SPI transfers, the driver must call
spi_claim_bus() to gain exclusive access to the SPI bus and initialize
the hardware. When all transfers are done, the driver must call
spi_release_bus() to make the bus available to others, and possibly
shut down the SPI controller hardware.

spi_xfer() behaves mostly the same as before, but it now takes a
spi_slave parameter instead of a spi_chipsel function pointer. It also
got a new parameter, flags, which is used to specify chip select
behaviour. This may be extended with other flags in the future.

This patch has been build-tested on all powerpc and arm boards
involved. I have not tested NIOS since I don't have a toolchain for it
installed, so I expect some breakage there even though I've tried
fixing up everything I could find by visual inspection.

I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
DataFlash drivers posted as a follow-up. I'd like some help testing
other boards that use the existing SPI API.

But most of all, I'd like some comments on the new API. Is this stuff
usable for everyone? If not, why?

Changed in v4:
  - Build fixes for various boards, drivers and commands
  - Provide common struct spi_slave definition that can be extended by
    drivers
  - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
  - Make default bus and mode build-time configurable
  - Override default SPI bus ID and mode on mx32ads and imx31_litekit.

Changed in v3:
  - Add opaque struct spi_slave for controller-specific data associated
    with a slave.
  - Add spi_claim_bus() and spi_release_bus()
  - Add spi_free_slave()
  - spi_setup() is now called spi_setup_slave() and returns a
    struct spi_slave
  - soft_spi now supports four SPI modes (CPOL|CPHA)
  - Add bus parameter to spi_setup_slave()
  - Convert the new i.MX32 SPI driver
  - Convert the new MC13783 RTC driver

Changed in v2:
  - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
    new API.

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Tested-by: Guennadi Liakhovetski <lg@denx.de>
2008-06-03 20:28:50 +02:00
..
74xx_7xx PPC: Create and use CONFIG_HIGH_BATS 2008-06-03 17:48:41 +02:00
arm720t Big white-space cleanup. 2008-05-21 00:14:08 +02:00
arm920t Big white-space cleanup. 2008-05-21 00:14:08 +02:00
arm925t Big white-space cleanup. 2008-05-21 00:14:08 +02:00
arm926ejs Merging Stelian Pop AT91 patches 2008-05-24 12:56:53 +02:00
arm946es Big white-space cleanup. 2008-05-21 00:14:08 +02:00
arm1136 Big white-space cleanup. 2008-05-21 00:14:08 +02:00
arm_intcm Big white-space cleanup. 2008-05-21 00:14:08 +02:00
at32ap avr32: Fix theoretical race in udelay() 2008-05-27 15:27:31 +02:00
blackfin Big white-space cleanup. 2008-05-21 00:14:08 +02:00
i386 Big white-space cleanup. 2008-05-21 00:14:08 +02:00
ixp Big white-space cleanup. 2008-05-21 00:14:08 +02:00
leon2 Big white-space cleanup. 2008-05-21 00:14:08 +02:00
leon3 Big white-space cleanup. 2008-05-21 00:14:08 +02:00
lh7a40x Big white-space cleanup. 2008-05-21 00:14:08 +02:00
mcf52x2 Big white-space cleanup. 2008-05-21 00:14:08 +02:00
mcf523x Big white-space cleanup. 2008-05-21 00:14:08 +02:00
mcf532x Big white-space cleanup. 2008-05-21 00:14:08 +02:00
mcf547x_8x Big white-space cleanup. 2008-05-21 00:14:08 +02:00
mcf5227x Revert "ColdFire: Get information from the correct GCC" 2008-05-03 23:07:15 +02:00
mcf5445x Big white-space cleanup. 2008-05-21 00:14:08 +02:00
microblaze [PATCH] Add support for design without interrupt controller 2007-09-24 00:21:19 +02:00
mips [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros 2008-05-30 00:53:38 +09:00
mpc5xx Big white-space cleanup. 2008-05-21 00:14:08 +02:00
mpc5xxx Big white-space cleanup. 2008-05-21 00:14:08 +02:00
mpc8xx Big white-space cleanup. 2008-05-21 00:14:08 +02:00
mpc83xx PPC: Create and use CONFIG_HIGH_BATS 2008-06-03 17:48:41 +02:00
mpc85xx Merge branch 'socrates' of /home/wd/git/u-boot/projects 2008-05-21 01:13:52 +02:00
mpc86xx PPC: 86xx Add bat registers to reginfo command 2008-06-03 18:05:15 +02:00
mpc512x MPC512x: Change traps.c to not reference non-addressable memory 2008-06-03 19:47:14 +02:00
mpc824x Big white-space cleanup. 2008-05-21 00:14:08 +02:00
mpc8220 Big white-space cleanup. 2008-05-21 00:14:08 +02:00
mpc8260 Big white-space cleanup. 2008-05-21 00:14:08 +02:00
nios SPI API improvements 2008-06-03 20:28:50 +02:00
nios2 Big white-space cleanup. 2008-05-21 00:14:08 +02:00
ppc4xx Big white-space cleanup. 2008-05-21 00:14:08 +02:00
pxa Big white-space cleanup. 2008-05-21 00:14:08 +02:00
s3c44b0 Big white-space cleanup. 2008-05-21 00:14:08 +02:00
sa1100 Big white-space cleanup. 2008-05-21 00:14:08 +02:00
sh3 sh: Add support SH3 and SH7720 2008-01-15 23:30:40 +09:00
sh4 Big white-space cleanup. 2008-05-21 00:14:08 +02:00