powerpc, 8xx: move SPI driver to drivers/spi/
authorChristophe Leroy <christophe.leroy@c-s.fr>
Thu, 6 Jul 2017 08:33:25 +0000 (10:33 +0200)
committerTom Rini <trini@konsulko.com>
Sat, 8 Jul 2017 19:56:03 +0000 (15:56 -0400)
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
arch/powerpc/cpu/mpc8xx/Makefile
drivers/spi/Kconfig
drivers/spi/Makefile
drivers/spi/mpc8xx_spi.c [moved from arch/powerpc/cpu/mpc8xx/spi.c with 99% similarity]

index f67c3f8..173cf01 100644 (file)
@@ -15,4 +15,3 @@ obj-y += interrupts.o
 obj-$(CONFIG_CMD_REGINFO) += reginfo.o
 obj-y  += serial.o
 obj-y  += speed.o
-obj-y  += spi.o
index fe01c73..8a8e8e4 100644 (file)
@@ -223,4 +223,10 @@ config TI_QSPI
          Enable the TI Quad-SPI (QSPI) driver for DRA7xx and AM43xx evms.
          This driver support spi flash single, quad and memory reads.
 
+config MPC8XX_SPI
+       bool "MPC8XX SPI Driver"
+       depends on 8xx
+       help
+         Enable support for SPI on MPC8XX
+
 endmenu # menu "SPI Support"
index c090562..9f8b86d 100644 (file)
@@ -30,6 +30,7 @@ obj-$(CONFIG_FSL_QSPI) += fsl_qspi.o
 obj-$(CONFIG_ICH_SPI) +=  ich.o
 obj-$(CONFIG_KIRKWOOD_SPI) += kirkwood_spi.o
 obj-$(CONFIG_LPC32XX_SSP) += lpc32xx_ssp.o
+obj-$(CONFIG_MPC8XX_SPI) += mpc8xx_spi.o
 obj-$(CONFIG_MPC8XXX_SPI) += mpc8xxx_spi.o
 obj-$(CONFIG_MVEBU_A3700_SPI) += mvebu_a3700_spi.o
 obj-$(CONFIG_MXC_SPI) += mxc_spi.o
similarity index 99%
rename from arch/powerpc/cpu/mpc8xx/spi.c
rename to drivers/spi/mpc8xx_spi.c
index 6e3e86f..b5bd558 100644 (file)
@@ -25,8 +25,6 @@
 #include <post.h>
 #include <serial.h>
 
-#ifdef CONFIG_SPI
-
 #define SPI_EEPROM_WREN                0x06
 #define SPI_EEPROM_RDSR                0x05
 #define SPI_EEPROM_READ                0x03
@@ -336,4 +334,3 @@ ssize_t spi_xfer(size_t count)
 
        return count;
 }
-#endif /* CONFIG_SPI */