diff options
author | Nick Hawkins <nick.hawkins@hpe.com> | 2022-06-08 16:21:36 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-06-22 21:30:05 -0400 |
commit | 4f689b3d86be92625ec0593779590ab5ccfd8171 (patch) | |
tree | 2bd8429726c0e8bb7dac47a38807fe5cb25035ce /drivers/spi/Makefile | |
parent | b25913b40ee138c35d4c92e55898a365348d5769 (diff) | |
download | u-boot-4f689b3d86be92625ec0593779590ab5ccfd8171.tar.gz u-boot-4f689b3d86be92625ec0593779590ab5ccfd8171.tar.bz2 u-boot-4f689b3d86be92625ec0593779590ab5ccfd8171.zip |
spi: gxp_spi: Add GXP SPI controller driver
The GXP supports 3 separate SPI interfaces to accommodate the system
flash, core flash, and other functions. The SPI engine supports variable
clock frequency, selectable 3-byte or 4-byte addressing and a
configurable x1, x2, and x4 command/address/data modes. The memory
buffer for reading and writing ranges between 256 bytes and 8KB. This
driver supports access to the core flash.
Signed-off-by: Nick Hawkins <nick.hawkins@hpe.com>
Diffstat (limited to 'drivers/spi/Makefile')
-rw-r--r-- | drivers/spi/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/spi/Makefile b/drivers/spi/Makefile index 06e81b465b..8755408e62 100644 --- a/drivers/spi/Makefile +++ b/drivers/spi/Makefile @@ -33,6 +33,7 @@ obj-$(CONFIG_EXYNOS_SPI) += exynos_spi.o obj-$(CONFIG_FSL_DSPI) += fsl_dspi.o obj-$(CONFIG_FSL_ESPI) += fsl_espi.o obj-$(CONFIG_SYNQUACER_SPI) += spi-synquacer.o +obj-$(CONFIG_GXP_SPI) += gxp_spi.o obj-$(CONFIG_ICH_SPI) += ich.o obj-$(CONFIG_IPROC_QSPI) += iproc_qspi.o obj-$(CONFIG_KIRKWOOD_SPI) += kirkwood_spi.o |