diff options
| -rw-r--r-- | board/freescale/mpc8349emds/mpc8349emds.c | 2 | ||||
| -rw-r--r-- | drivers/spi/Makefile | 2 | ||||
| -rw-r--r-- | drivers/spi/mpc8xxx_spi.c | 2 | ||||
| -rw-r--r-- | include/configs/MPC8349EMDS.h | 1 | ||||
| -rw-r--r-- | include/spi.h | 9 | ||||
| -rw-r--r-- | lib_ppc/board.c | 2 | 
6 files changed, 11 insertions, 7 deletions
| diff --git a/board/freescale/mpc8349emds/mpc8349emds.c b/board/freescale/mpc8349emds/mpc8349emds.c index 4d57fafc9..9a312c37b 100644 --- a/board/freescale/mpc8349emds/mpc8349emds.c +++ b/board/freescale/mpc8349emds/mpc8349emds.c @@ -253,7 +253,7 @@ void sdram_init(void)  /*   * The following are used to control the SPI chip selects for the SPI command.   */ -#ifdef CONFIG_HARD_SPI +#ifdef CONFIG_MPC8XXX_SPI  #define SPI_CS_MASK	0x80000000 diff --git a/drivers/spi/Makefile b/drivers/spi/Makefile index e66e0ee09..4f7b679ee 100644 --- a/drivers/spi/Makefile +++ b/drivers/spi/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk  LIB	:= $(obj)libspi.a -COBJS-y += mpc8xxx_spi.o +COBJS-$(CONFIG_MPC8XXX_SPI) += mpc8xxx_spi.o  COBJS-$(CONFIG_ATMEL_SPI) += atmel_spi.o  COBJS-$(CONFIG_MXC_SPI) += mxc_spi.o diff --git a/drivers/spi/mpc8xxx_spi.c b/drivers/spi/mpc8xxx_spi.c index 136fb5005..9eaf9860b 100644 --- a/drivers/spi/mpc8xxx_spi.c +++ b/drivers/spi/mpc8xxx_spi.c @@ -22,7 +22,6 @@   */  #include <common.h> -#if defined(CONFIG_MPC8XXX_SPI) && defined(CONFIG_HARD_SPI)  #include <malloc.h>  #include <spi.h> @@ -180,4 +179,3 @@ int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,  	return 0;  } -#endif				/* CONFIG_HARD_SPI */ diff --git a/include/configs/MPC8349EMDS.h b/include/configs/MPC8349EMDS.h index 37e3ca40b..870583845 100644 --- a/include/configs/MPC8349EMDS.h +++ b/include/configs/MPC8349EMDS.h @@ -355,7 +355,6 @@  /* SPI */  #define CONFIG_MPC8XXX_SPI -#define CONFIG_HARD_SPI			/* SPI with hardware support */  #undef CONFIG_SOFT_SPI			/* SPI bit-banged */  /* GPIOs.  Used as SPI chip selects */ diff --git a/include/spi.h b/include/spi.h index 7744c2e36..320e50e52 100644 --- a/include/spi.h +++ b/include/spi.h @@ -24,6 +24,15 @@  #ifndef _SPI_H_  #define _SPI_H_ +/* Controller-specific definitions: */ + +/* CONFIG_HARD_SPI triggers SPI bus initialization in PowerPC */ +#ifdef CONFIG_MPC8XXX_SPI +# ifndef CONFIG_HARD_SPI +#  define CONFIG_HARD_SPI +# endif +#endif +  /* SPI mode flags */  #define	SPI_CPHA	0x01			/* clock phase */  #define	SPI_CPOL	0x02			/* clock polarity */ diff --git a/lib_ppc/board.c b/lib_ppc/board.c index c42e08862..96c573ce1 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -90,9 +90,7 @@ void doc_init (void);      defined(CONFIG_SOFT_I2C)  #include <i2c.h>  #endif -#if defined(CONFIG_HARD_SPI)  #include <spi.h> -#endif  #include <nand.h>  static char *failed = "*** failed ***\n"; |