diff options
author | Tom Rini <trini@ti.com> | 2012-08-08 14:29:51 -0700 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-09-01 14:58:18 +0200 |
commit | 4c0620bf42172325ea0c6afa0fdd362bb264e31b (patch) | |
tree | f6d80d46abe958b5be5aa138313413b77ffb4f80 /drivers/spi/omap3_spi.c | |
parent | 6bfca5031b922b29d12c119910c04528173f1d86 (diff) | |
download | u-boot-4c0620bf42172325ea0c6afa0fdd362bb264e31b.tar.gz u-boot-4c0620bf42172325ea0c6afa0fdd362bb264e31b.tar.bz2 u-boot-4c0620bf42172325ea0c6afa0fdd362bb264e31b.zip |
am33xx: Add support, update omap3 McSPI driver
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'drivers/spi/omap3_spi.c')
-rw-r--r-- | drivers/spi/omap3_spi.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/spi/omap3_spi.c b/drivers/spi/omap3_spi.c index 9346c0b5b4..47f9e56f42 100644 --- a/drivers/spi/omap3_spi.c +++ b/drivers/spi/omap3_spi.c @@ -86,15 +86,21 @@ struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs, case 0: ds->regs = (struct mcspi *)OMAP3_MCSPI1_BASE; break; +#ifdef OMAP3_MCSPI2_BASE case 1: ds->regs = (struct mcspi *)OMAP3_MCSPI2_BASE; break; +#endif +#ifdef OMAP3_MCSPI3_BASE case 2: ds->regs = (struct mcspi *)OMAP3_MCSPI3_BASE; break; +#endif +#ifdef OMAP3_MCSPI4_BASE case 3: ds->regs = (struct mcspi *)OMAP3_MCSPI4_BASE; break; +#endif default: printf("SPI error: unsupported bus %i. \ Supported busses 0 - 3\n", bus); |