diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/qualcomm/common/spi.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/soc/qualcomm/common/spi.c b/src/soc/qualcomm/common/spi.c index b4db3e589c..aee124dd59 100644 --- a/src/soc/qualcomm/common/spi.c +++ b/src/soc/qualcomm/common/spi.c @@ -3,6 +3,7 @@ #include <spi-generic.h> #include <spi_flash.h> #include <soc/qspi_common.h> +#include <soc/qupv3_spi_common.h> static const struct spi_ctrlr qspi_ctrlr = { .claim_bus = qspi_claim_bus, @@ -12,12 +13,24 @@ static const struct spi_ctrlr qspi_ctrlr = { .max_xfer_size = QSPI_MAX_PACKET_COUNT, }; +const struct spi_ctrlr spi_qup_ctrlr = { + .claim_bus = qup_spi_claim_bus, + .release_bus = qup_spi_release_bus, + .xfer = qup_spi_xfer, + .max_xfer_size = 65535, +}; + const struct spi_ctrlr_buses spi_ctrlr_bus_map[] = { { .ctrlr = &qspi_ctrlr, .bus_start = CONFIG_BOOT_DEVICE_SPI_FLASH_BUS, .bus_end = CONFIG_BOOT_DEVICE_SPI_FLASH_BUS, }, + { + .ctrlr = &spi_qup_ctrlr, + .bus_start = 0, + .bus_end = 15, + }, }; const size_t spi_ctrlr_bus_map_count = ARRAY_SIZE(spi_ctrlr_bus_map); |